Hello All,
Lets say I have some code like the followin
index.php
<?
createHeader();
createNav("basic");
createLMenu($Lmenu);
?>
<table . . . . .. . .
<?createFooter();?>
What I would like to do is from a page
lefts say test.php
I would like, when a request for index is made, pass it the $Lmenu variable, that determines the left hand side menu to display.
Any help is welcomed .