> Using mysql, how do I access the data of the next row using code > something like this: > $result = mysql_query("select column from table where > whatever='whatever'"); > while($array = mysql_fetch_array($result)){ > //Whatever > } Each iteration of the while loop will fetch a row for you and it's contents will be in the $array[] array. Try "echo $array['column'];" inside of your while to see what I'm talking about. ---John Holmes... -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php