Hello all,
Im trying to create a page that will display content based off of the variable join- in the URL
for instance
we have a page called join.php. its just a Template file with no content in it.
i want to display the content by using a varibale
so if the URL variable of join=1 i wanna drop join1.html into that page tempate and if its join=2 i wanna display join2.html in that template.
iv seen referances to this
<php
$join_code = $_request["join"];
if($join_code == 1) {
OPTION 1
}... and so on
but not sure if thats what i need to how to implement it.
can some one please help
thank you
Steve