I have made my first php pages
I coded a table with three rows
top row= <?php include ("header.htm"); ?>
middle = <?php include ("home.htm"); ?>
bottom= <?php include ("header.htm"); ?>
for the next page it is
top row= <?php include ("header.htm"); ?>
middle = <?php include ("links.htm"); ?>
bottom= <?php include ("header.htm"); ?>
Can I make 1 page like
top row= <?php include ("header.htm"); ?>
middle = <?php include VARIABLE_HERE?>
bottom= <?php include ("header.htm"); ?>
and just say www.foo.com/index.php?variablehere=home
or something like that?
Thanks for any advise