I am using a PHP function to pull some information into a list for me - and it pulls all of it, but the sort is not working and I have messed with the LIMIT and it doesn't work as well...
if(strtolower($term) == 'feature') {
$query = "select * FROM $table WHERE (tags LIKE 'feature') ORDER BY rid DESC LIMIT 1";
}