You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'release DESC LIMIT 0, 10' at line 1
<h1>Avatar Directory</h1>
<br>
Here you can find all of the avatars that have been released to date. You can sort them by release date or category. More functions and features will be added soon.
<br>
<br>
Note: Avatar Information pops-up in a new window.
<br>
<br>
<a href="">Newest</a> | <a href="">Battledome</a> | <a href="">Clickables</a> | <a href="">Items</a> | <a href="">Pets/Petpets</a> | <a href="">Other</a> | <a href="">Retired</a> |
<br>
<br>
<?
mysql_connect("localhost", "MY USER", "MYPASS");
mysql_select_db("MYDB");
?>
<?
$id = $_REQUEST['id']; // Gets the id of the shop from the URL. Ex: http://localhost/lols.php?id=1337 $shop would be equal to 1337
$sql = "SELECT * FROM avatars ORDER BY release DESC LIMIT 0, 10";
$query = mysql_query($sql);
echo mysql_error();
$i = 0;
while($results = mysql_fetch_array($query)) {
if($i == 0) {
echo "";
}
$desc = $results['desc'];
$id = $results['id'];
$category = $results['category'];
$cost = $results['cost'];
$name = $results['name'];
$image = $results['image'];
$release = $results['release'];
echo "<div class='abox2'><div class='aheader2'>$name</div><div class='acontent2'><table border='0' cellpadding='5' cellspacing='1'><tr><td><a href=javascript:openpopup('/avatars/avatars.php?id=$id')><img src='$image' border='0'></a></td><td valign='top'><a href=javascript:openpopup('avatars/avatars.php?id=$id')>$name - (click here for solution)</a></td></tr></table></div></div>";
$i++;
if($i == 4) {
echo "";
$i = 0;
}
}
echo "";
?>