I have a pressing problem that was not answered in a previous post.
I need to know how to make a links script on a site I am creating.
Here is my problem...
I want to be able to make my links like so
http://www.somedomain.com/linx.php?action=somepagelink
I wrote a script like:
if (action = "home") {
// redirects you to the home page
}
elseif (action = "about") {
// redirects you to the about page
}
elseif (action = "help") {
// redirects you to the help page
}
else (action = "") {
// Fail safe
echo "How the hell did you get here?";
}
but it does not work, can someone please send me an example of how it should be, or tell me where I can get the working code.
This is very important to me, so please help!
Regards,
Charlie