Hey Everyone! ( <-- First Post, Wow)
Well i want use a URL variable like this...
www.site.co.uk/index.php?page="about"
With me so far? Ok.
Now when the user enters the index.php page, i want specific content loaded into a preset table, in the case above it would be the about page, but if the link were to be www.site.co.uk/index.php?page="download" the download page would load.
I already have this code snippet to display and external PHP file...
<?php include ("http://www.site.co.uk/content/about.php"); ?>
But i want to be able to change the end bit from /about.php, so it would be like this....
www.site.co.uk/content + insert url variable here + .PHP
See what i mean.
Any help would be greatly appreciated.