php won't parse variables from the URL into the php page
Posted: Sat Jan 24, 2004 9:07 am
Hi there. I am currently trying to get a file called linker.php to inlcude the pages that i tell it to. Now the page linker.php is called into a frame named main.
so, I have these links which link to
but i constantly get an error message that says "Undefined variable: category ..."
so it seems that the page linker.php never gets the variables!
the code in the linker.php file is as follows:
whats wrong with my script?
so, I have these links which link to
Code: Select all
href="htm/linker.php?category=about.htm" target="main"so it seems that the page linker.php never gets the variables!
the code in the linker.php file is as follows:
Code: Select all
<?php
include($category);
?>