I am trying to make a templated web site.
I in my template I have a call like this:
<?php include "$story" ?>
the index.php3 that call the template has this:
if(!IsSet($story)) { $echo = ("home.html"); }
I want to have a menu bar that changes $story to a different value and reload the page.
How do I go about doing this?
for example a Products link the changes $story to products.html and then includes that in place of home.html