I want to make two short by options for the users to be able to check out the most recent uploads and the ones with the most views. The query works fine but i dont know how to make the link (<a href="") work.
I made this change on the .htaccess file
RewriteRule ^audios&([0-9]+)$ audios.php?recent=true
RewriteRule ^audios&([0-9]+)/$ audios.php?recent=true
the variable $base_url works fine
Here is the code:
<a href="'.$base_url.'audios&recent=true">Most Recent</a>
<a href="'.$base_url.'audios&most=true">Most Viewed</a>
if (isset($_GET['recent']) && ($_GET['recent'] == 'true'))
{
$Order = " ORDER BY M.created DESC";
}
else if (isset($_GET['most']) && ($_GET['most'] == 'true'))
{
$Order = " ORDER BY M.views_count DESC";
}
the .php file is called audios.php