Salut tt le monde voila mon probleme : quand j'affiche ma page j'ai une erreur sur mon foreach
Warning: Invalid argument supplied for foreach() in c:\program files\easyphp1-7\www\appli_parc\admin.php on line 45
je comprend pas pkoi car j'utilise toujours foreach pour afficher une table sur ma page et un coup ca marche et un coup ca marche pas
pouvez vous m'aider??
voila mon script :
<?php
$sql= "SELECT * FROM urs ORDER BY `cle`";
$res = dbquery($sql);
if (count($res) > 0){
?>
<table class="cle" width="100%" border=1 rules="all">
<tr>
<th>Région</th>
<th>Clé correspondante</th>
<tr>
<?php
foreach ($res as $tab){
echo "<tr>\n";
echo "<td>" . $tab["region"] . "</td>\n";
echo "<td>" . $tab["cle"] . "</td>\n";
echo "</tr>\n";
}
echo "</table>\n";
echo "</div>\n";
}
}