I tried looking on Google for info on this, but not much came to light.
I'm trying to do a query string that takes info from text files and renders them as PAGENAME.php?id=1 - without using a database, if possible.
My file is called test.php and this is its content:
<html>
<body>
<?php
print("<B>This is 100 FM for North Loamshire. Info coming soon</B>");
?>
</body>
</html>
However, I would like to make pages in the format test.php?id=1, test.php?id=2, similar to how http://www.brmb.co.uk/schedule.asp is http://www.brmb.co.uk/schedule.asp?id=1
I know ASP and PHP are totally different, but the idea's the same - using a query string.
If anyone could help me it would be much appreciated. :icon_cheesygrin: