When converting messages gives out this error
Fatal error: Call to undefined function: mysql_fetch_assoc() in convert_functions.php on line 294
Logged In: NO
replace each of the three lines reading
$data = mysql_fetch_assoc($result);
with
$data = mysql_fetch_array($result,MYSQL_ASSOC);
This will solve the problem!
Log in to post a comment.
Logged In: NO
replace each of the three lines reading
$data = mysql_fetch_assoc($result);
with
$data = mysql_fetch_array($result,MYSQL_ASSOC);
This will solve the problem!