오늘온 error_log를 보다가
mysql_result() expects parameter 1 to be resource, boolean given in 경로명 이라는 PHP warning이 온것을 확인하였다.
이외에 mysql_fetch_array() expects parameter 1 to be resource, boolean given in 등...
소스코드를 확인하니
$getAreaCountry=mysql_query("SELECT COUNTRY_NAME FROM TABEL 어쩌구 저쩌구"); $dependCountry=mysql_result($getAreaCountry,0); if($dependCountry!=''){ 어쩌구 저쩌구... }
로 되어있었다. 그래서 다음 처럼 수정 하였다.
$getAreaCountry=mysql_query("SELECT COUNTRY_NAME FROM TABEL 어쩌구 저쩌구 LIMIT 1"); $dependCountry=mysql_fetch_assoc(mysql_query($getAreaCountry)); $dependCountry = $dependCountry['COUNTRY_NAME']; if($dependCountry!=''){ 어쩌구 저쩌구... }