the code I\'m looking at does this...
while ($info=mysql_fetch_array($data_jurisdiction)) { //some stuff }
I\'m wondering what does this wh
as long as $info gets assigned a value other than false, this code will execute?
Yes.