I have checked and checked so many times and i can't see why this is happening!
PHP Code:$skin = mysql_query( "SELECT id,path,name,description,author FROM skins ORDER BY id ASC LIMIT 10" );
PHP Code:while( $list = mysql_fetch_array( $skin ) )
{
echo "variables and stuff";
}
Now technically speaking it should display what i want in the while loop 10 times in an ascending order. However i have 3 rows in the table and it is currently displaying 2 / 3.
So the latest entry is being missed out for some reason and i can't work out why this is :S





Reply With Quote



