I would like to make a simple query to select the last 50 entries in my "pageviews" table... The autoID field is missing numbers here and there from deletes... Any ideas?
$sql = mysql_query("SELECT * FROM pageviews);
$sql="SELECT * FROM pageviews ORDER BY autoID DESC LIMIT 50";
adam
Thanks...