-
[비공개] jQuery 를 이용한 XML 파싱
$(document).ready(function() { $.get("hello.xml",{},function(xml) { $("item",xml).each(function(i) { title = $(this).find("title").text(); $("#contents").append("title"); }); }); }); 아래는 안에 들어갈 div 태그추천 -
추천
-
추천
-
[비공개] PHP 변수형 확인
사용법: gettype(변수명) 변수형 리턴값 종류: "integer", "double", "string", "array", "object", "unknown type" 사용예:추천 -
[비공개] 실시간 주가정보 파싱하기
개인적인 용도로 사용할 실시간 주가 정보가 필요했었다. 주가정보를 제공하는 open api 를 검색해 보았지만, 찾기가 힘들었다. 이리저리 검색을 하던중 http://money.msn.co.kr/gadget/sb_data.php 의 parameter 를 적절히 사용하면 실시간(사실 20분 늦은) 주가 정보를 제공받을수 있다는걸 알게 되었다. 하지만 parameter에는 종목코드로밖에 검색을 할수없었고(내가 알기로는) 종목코드로 검색을 하는것은 비효율적이였기 때문에 다른 방법이 필요했다. 다행이도 '주가종목 코드'를 검색해주는 곳이 있어서, 그곳에서 모든 종목의 종목코드를 얻을수 있었다.(약 2066개였는데, 전부인지는 모르겠다) 종목과 종목별 코드를 얻은 나는 DB에 입력하기 위해 explode를 사용해서 종목명과 코드명을 분리하였다. 이 방법은 나중에 새로운 종목이 생기거나, 코드명이 변경..추천 -
[비공개] .htaccess 수정하여 index.php 파일 제거
Removing the index.php file By default, the index.php file will be included in your URLs:example.com/index.php/news/article/my_article You can easily remove this file by using a .htaccess file with some simple rules. Here is an example of such a file, using the "negative" method in which everything is redirected except the specified items:RewriteEngine on RewriteCond $1 !^(index\.php|images|robots\.txt) RewriteRule ^(.*)$ /index.php/$1 [L] In the above example, any HTTP request other than those for index.php, images, and robots.txt is treated as a request for your index.php추천 -
[비공개] DB 내용 배열에 저장하기
while($row = mysql_fetch_array($result)) { $days[] = $row[0] ; }추천 -
[비공개] mysql 보안
As long as there are programming languages people will try to hack them, fortunately for us this means we have to have our wits about us when writing applications. In this 2 part article we'll be discussing different ways that hackers try and break into our applications and how we go about protecting our applications from possible harm. Database Security Many websites fall under the attack known as SQL Injection. SQL injection occurs when a malicious user experiments on a form to gain information about a database. After gaining sufficient knowledge, usually from database error messages the attacker is equipped to exploit the form for any possible vulnerabilities by injecting SQL into form fields. With SQL Injection a hacker can retrieve your data, insert, delete, basicly can do anything with your database. A very common example is: Here it is easy for a hacker to try and experiment with your form by giving it statements such as 'OR 1' or 'SELECT username'. This is easily fixab..추천 -
[비공개] PHP URL 주소 받아오기
$url = "http://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];추천