This question has already been answered:
I am trying to remove data from the database, but in the end here is the error:
Warning: mysql_fetch_array () expects parameter 1 to be resource, given in J: \ home \ localhost \ www \ admin \ section \ page.php on line 5
Php code:
include "/../setting_sql.php"; $d_table=mysql_query("SELECT * FROM 'order'"); while($stroka=mysql_fetch_array($d_table)) { echo $stroka["id"]; echo " <br>"; }
mysql_functions are deprecated inphp. Do not use them! - Visman