coolaj
Joined: 28 Jan 2008 Posts: 1
|
Posted: Mon Jan 28, 2008 9:27 pm Post subject: Handling variable in URL |
|
|
Now, I have difficulties in understanding why PHP works in such a strange way. It does not bring variables from the URL.
For example, I wrote a test script (test.php) and placed it on the root of my web site:
<?php
if (isset($var))
{
echo "The variable \$var is set to ".$var;
}
else
{
echo "The variable \$var is not set";
}
phpinfo();
?>
By going to URL test.php I would expect to see line like: The variable $var is not set.
And this is fine.
By going to URL test.php?var=2 I would expect to see line like: The variable $var is set to 2.
But instead I see the same result.
Please advice. |
|