Try this:
PHP Code:$skin = mysql_query("SELECT * FROM skins ORDER BY id ASC LIMIT 10");
while ($fetch = mysql_fetch_array($skin)) {
echo "$fetch['name']
$fetch['path']
$fetch['description']
$fetch['author']";
}

Try this:
PHP Code:$skin = mysql_query("SELECT * FROM skins ORDER BY id ASC LIMIT 10");
while ($fetch = mysql_fetch_array($skin)) {
echo "$fetch['name']
$fetch['path']
$fetch['description']
$fetch['author']";
}
Back for a while.
Meh, stuff indentation for query's lol.
Back for a while.
lemme guess... girls to?
Back on topic, mine should worketh along with thou excellénts.
Lets set the stage on fire, and hollywood will be jealous.
I don't think you can use LIMIT 10, Use "LIMIT 0, 10"
So, use:
PHP Code:$skin = mysql_query("SELECT * FROM skins ORDER BY id ASC LIMIT 0, 19");
while($fetch = mysql_fetch_array($skin)) {
echo $fetch['name'];
echo $fetch['path'];
echo $fetch['description'];
echo $fetch['author'];
}
Last edited by Hypertext; 29-09-2008 at 07:42 PM.
How could this hapen to meeeeeeeeeeeeeee?lol.
Want to hide these adverts? Register an account for free!