Language

자바스크립트에서 체크박스 Array 값 사용하기

자바스크립트에서 체크박스 Array 값 사용하기 Client Side <form method="get"> <input type="checkbox" name="options[]" value="1" /> <input type="checkbox" name="options[]" value="2" /> <input type="checkbox" name="options[]" value="3" /> <input type="submit" value="Go!" /> </form> function …

자바스크립트에서 체크박스 Array 값 사용하기 Read More »

php에서 자동으로 스타일 및 스크립트 파일 불러오기

php에서 자동으로 스타일 및 스크립트 파일 불러오기 스타일시트 파일 불러오기 function auto_enqueue_style($version='') { $basename = basename($_SERVER['REQUEST_URI'], '?' . $_SERVER['QUERY_STRING']); $split = explode('.', $basename); $filename = $split[0]; $extension = $split[count($split)-1]; $fileUrl …

php에서 자동으로 스타일 및 스크립트 파일 불러오기 Read More »

PHP에서 웹 크롤러 만들기

PHP에서 웹 크롤러 만들기 $ch=curl_init(); //initialize curl curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser. curl_setopt($ch, CURLOPT_URL, “http://google.com/”); $data …

PHP에서 웹 크롤러 만들기 Read More »

Scroll to Top