got to looking at your mysql code, and was wondering if you could show how its setup... eg
+------------------------+-------------------------------------------+
| Some Name | someone@somewhere.com |
+------------------------+-------------------------------------------+
if thats the case, then it should be
$info = mysql_fetch_array($result);
list($name,$email) = $info[0]; // 0 being the row number.
the way you have it says the dbase structure is
+-----------------------------------+
| Some Name |
| someone@somewhere.com |
+-----------------------------------+
each fetch_row that you perform gets the next row. if you want to restart at the beginning of the array, you will need to add another $result = mysql_query() statment.
hope that helps you out...
sorry for not studying your code last time...