Hello.
I have a question about the QUERY_STRING. What I am trying to do it pass a variable like this:
<?
require("test.php?readthis");
?>
and then read it in my required file (test.php) like this
$query = $QUERY_STRING;
echo ($query);
It works fine if I use a link like this <a href="test.php?readthis">test</a> but I can't get it to work with the require. I'm guessing that with the require, it doesn't send any QUERY_STRING, so does anyone know of a way that I can do this?
Thanks.