while($row = mysql_fetch_array($sql) $i < 10) { print "$i - $row"; }
Er det muligt at have mere end en ting i while løkken fx.Kode while($row = mysql_fetch_array($sql) $i < 10) { print "$i - $row"; } - Patrick
while($row = mysql_fetch_array($sql) && $i < 10) { print "$i - $row"; print "noget mere"; $i++; }