Hello,
I would like one of my links to be www.myname.com/index.php?page=cat. So, may I know how can I get the script?
Thank You.
echo "<a href='www.myname.com/index.php?page=cat'>Click here/a>";
I don't understand your question, can you explain in a bit more detail? I think you're looking for a bit more than the PHP script to print out a link, right?
I mean parsing URL.
Thank you.
Parsing it in what way?
I'm not sure what you mean... Maybe something like this:
<?php if($_GET['page'] == "downloads") { include("downloads.php"); } else if($_GET['page'] == "info") { include("info.php"); } else { include("start.php"); } ?>