I don't know if I understood what you mean (english isn't my mother language) but I think you can use the mysql_num_rows function to create a loop. If you got the variable $query as the result of a db research, use something like:
for ($i=0; $i<mysql_num_rows($query); $i++){ $row[$i]=mysql_fetch_array($query); } Hope this is what you want. Cheers Voodoo -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php