PHP의 설정을 담은 파일인 php.ini을 설정 하는 방법에 대해 알아보자. 주석처리( ; )php.ini 파일에서 맨 앞에 ; 붙은 내용은 주석이다. 예제;;;;;;;;;;;;;;;;;;;; About php.ini ;;;;;;;;;;;;;;;;;;;; 에러관련Notice: Undefined variable.... 라는 식으로 에러가 뜰경우, 즉 선언되지 않은 변수에 대한 오류 메세지가 뜨는것은 보통 E_ALL 로 설정되어 있어서 모든 에러가 뜨는것이다. 그럴경우엔 아래와 같이 E_ALL & ~E_NOTICE 라고 해주면 된다. 예제error_reporting = E_ALL & ~E_NOTICE;error_reporting = E_ALL[출처] [PHP] php.ini 관련 설정|작성자 b1ix - ..
mysql_query("set names utf8"); if($_GET['what'] && $_GET['str']){ $find = $_GET['what']; $str = $_GET['str']; $sql = mysql_query("select count(distinct IP) from mnormal_mode where $find like '%$str%'"); }else{ $sql = mysql_query("select count(distinct IP) from mnormal_mode"); } $a = mysql_fetch_array($sql); $total_num = $a[0]; if(!$_GET['maximum']){ $maximum = 10; }else{ $maximum = $_GET['..