Hi to all,
I have a little problem with sql query and php code. I typed this:
$result = mysql_query("select var from mytable ",$db);
$myrow = mysql_fetch_array($result); // This create an array
foreach ($myrow as $value) {
statements
...
The problem is that foreach function doesn't seem working.
I really don't understand why.
Thanks in advance to everyone will help me.