I'm new to PHP, so this could be a stupid question..
But why won't this work?
(Some.html)
<a href="/error.php?e=error1">error</a>
(error.php)
<?
print("error code ".$e);
?>
Yields this on browser (IE5)
error code
From the documentation it looks like I should automatically have a variable $e and it should have the value "error1". What gives? this is with PHP and Apache on Win2k. tia.
But why won't this work?
(Some.html)
<a href="/error.php?e=error1">error</a>
(error.php)
<?
print("error code ".$e);
?>
Yields this on browser (IE5)
error code
From the documentation it looks like I should automatically have a variable $e and it should have the value "error1". What gives? this is with PHP and Apache on Win2k. tia.