본문 바로가기

프로그래밍/PHP

mysql 에서 mysqli로 변경시


















Fatal error: Uncaught Error: Call to undefined function mysql_fetch_array() 에러시



//mysql
while($row= mysql_fetch_array($result1)) {  }

//mysqli
while($row= mysqli_fetch_object($result1)) {  } // 이렇게 수정



Fatal error: Uncaught Error: Call to undefined function mysql_num_rows()


//mysql
$aaaa = mysql_num_rows($result_common); 

//mysqli
$aaaa = mysqli_num_rows($result_common);  // 이렇게 수정