diff options
Diffstat (limited to 'errors.php')
-rw-r--r-- | errors.php | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,9 +1,11 @@ <?PHP
-Echo "You're here because of error: $_GET[error] ";
+echo "You're here because of error: $_GET[error] ";
-Echo "<br />$_SERVER[HTTP_REFERER]";
+echo "<br />Directed from: $_SERVER[HTTP_REFERER]";
+echo "<br />Requested: $_SERVER[REQUEST_URI]";
+echo "<br />Loaded: $_SERVER[PHP_SELF]";
-Echo "<br /><a href='http://www.pathery.com'>Go back to Home</a>";
+echo "<br /><a href='http://www.pathery.com'>Go back to Home</a>";
?>
|