Li shows an error in the control panel is a fault in the line No. 70 in the php file that is the line
while ($ result_class = mysql_fetch_array ($ query_class)) {
I hope help me
Li shows an error in the control panel is a fault in the line No. 70 in the php file that is the line
while ($ result_class = mysql_fetch_array ($ query_class)) {
I hope help me
Use the following correction
while ($result_class = mysql_fetch_array ($query_class)) {
There should be no gap between $ and variable name
Without seeing the rest of your code, that error message is consistent with $query_class being a boolean false, which means whatever created it failed. We'd need to know how it was created before we could really advise. Try popping
die(var_dump($query_class));
before the line you've quoted and see what it says.
And as a bonus, please don't be using mysql_ functions, they're already obsolete and for good reason.