<?php
$risultato= mysql_query("select * from tabella_drink limit 1000") or die (mysql_error());
while($result=mysql_fetch_array($risultato) { <======= mi da errore qui!
echo "<tr>
<th>".$result['id']."</th>
<th></th>
<th></th>
</tr>";
}
?>
<?php
$risultato= mysql_query("select * from tabella_drink limit 1000") or die (mysql_error());
while($result=mysql_fetch_array($risultato) { <======= mi da errore qui!
echo "<tr>
<th>".$result['id']."</th>
<th></th>
<th></th>
</tr>";
}
?>