Try to make it simpler (but longer in coding :-))
$query = "SELECT field FROM table";
$rows = mysql_num_rows($query);
for($i=0;$i<$rows;$i++){
$result=mysql_result($query,$i,"field");
}
This is the way i do it, and ir NEVER fails. At least, if the query is allright.
fLIPIS