Anyone ever have a problem with phpMyAdmin's row count? I have just imported a 60,000 row CSV file into my MySQL database using mysqlimport.
When I look at this database from phpMyAdmin it returns a random number of entries (usually around 55,000 to 65,000) even though it states that the next auto increment ID should be 60,001 (the correct number of rows plus one).
Now when I print out the number of rows using mysql_num_rows() it also gives me the correct number of rows each time.
Any ideas?