I am trying to figure out how to echo a line of text when a link is clicked using the $_GET function. Here is what I have right now:
<nav>
<ul>
<li>
<a href="?action=albums">Albums</a>
</li>
<li>
<a href="?music">Music</a>
</li>
</ul>
</nav>
<?php
if(isset($_GET['action']) && $_GET['action']=='albums'){
echo'<h1>Albums</h1>';
}
?>
Here is my htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /lr/profile.php?username=$1
<a href="thispage.php?action=albums">– Jamie Aug 1 '12 at 0:23