I have an index.php page that includes:
lm_fr.php page which is the navigation menu
start.php which is a default include in a table cell of index.php
Now following some tutorial I have put the following php code into that table cell:
<? switch ($page) {CASE "quest": include "quest.php"; break;} ?>
The lm_fr.php page code (just one link):
<a href="quest.php?page=quest">
And it works but SWITCHes the page to quest.php instead of including it in a table cell of index.php
What am I doing wrong? Maybe something other than SWITCH? GET? How?
Thanks a lot in advance.