i do need to do an include of a php script in another script passing some parameters
like include ('test.php?par1=xy&par2=yz')
the test.php is like a "subpage" on the page that calls it
but as a regular page when called in an uri (
these par1, par2, ... are there to tell the script wheather to render menu, baner, ...
the syntax shown above: include ('test.php?par1=xy&par2=yz') returns error
am i doing anything wrong or the include directive does not support parameters?
and if not how can i do that instead?
like include ('test.php?par1=xy&par2=yz')
the test.php is like a "subpage" on the page that calls it
but as a regular page when called in an uri (
these par1, par2, ... are there to tell the script wheather to render menu, baner, ...
the syntax shown above: include ('test.php?par1=xy&par2=yz') returns error
am i doing anything wrong or the include directive does not support parameters?
and if not how can i do that instead?