the code I\'m looking at does this...
while ($info=mysql_fetch_array($data_jurisdiction)) { //some stuff }
I\'m wondering what does this wh
For each record $info will be populated with the current row, until it reaches the end of the result set when it will be set to false (which should stop the while loop).
$info