Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
2  
What's wrong with this code? – Michael Hampton Aug 1 '12 at 0:20
It does not display the echoed string – Aaron Warnke Aug 1 '12 at 0:20
Actually it does when i try it in another php file – Aaron Warnke Aug 1 '12 at 0:22
Try changing your links to <a href="thispage.php?action=albums"> – Jamie Aug 1 '12 at 0:23
Jamie I tried that and it is the same result as my above code – Aaron Warnke Aug 1 '12 at 0:28
show 6 more comments

1 Answer

up vote 5 down vote accepted

If that code isn't part of index.php, or likewise isn't accessible at http://yourhost/, it won't work, because the <a href="?action=albums"> doesn't go to whatever file you're in, it goes to the root. Try <a href="<?php echo $_SERVER['SCRIPT_NAME']; ?>?action=albums">Albums</a>.

If you have a .htaccess file, make sure your RewriteRule has [QSA] at the end of it, as well. Additionally, the SCRIPT_NAME code won't work if you use RewriteRules, because SCRIPT_NAME gets you the real file name for the PHP script.

share|improve this answer
Ok it does the same thing but now if I click on it more than once it just keeps adding ?action=albums at the end of the url – Aaron Warnke Aug 1 '12 at 0:24
Sorry about that. Try my edit (use SCRIPT_NAME instead of REQUEST_URI). – dririan Aug 1 '12 at 0:26
No that redirects me to the index page as it is part of my code I use a htaccess file to tidy up the url. – Aaron Warnke Aug 1 '12 at 0:30
When I do click on my original codes albums link it does not redirect me anywhere it just adds the ?action=albums to the end of the url? – Aaron Warnke Aug 1 '12 at 0:31
That's probably because of the RewriteRule. Add [QSA] to the end of your RewriteRule in .htaccess. – dririan Aug 1 '12 at 0:36
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.