sto cercando di creare un ciclo da 1 a 1000 prendendo i dati dal database prima era così
$risultato= mysql_query("select * from tabella_drink") or die (mysql_error());
for ($numero=1; $numero<=1000; $numero++) {
?>
<tr>
<th><?php echo $numero ?></th>
<th></th>
<th></th>
</tr>
<?php
}
?>