Hi, I have a problem and it must be kinda common, yet I don't know how to search for the answer. I have a mysql query and then I show the results with:
while ($myrow = mysql_fetch_assoc($rsEvents2)) {
echo $myrow['theDate'];
echo "<br>";
echo "<br>";
}
for example. And that prints out 7 results. However there should be 8 results. When I just do the query in MySql the query returns 8. When I fetch the number of rows: mysql_num_rows it gives me 8!!! Why oh WHY does the while statement not bring the FIRST variable? Can anyone help? PLEASE ...