summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--errors.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/errors.php b/errors.php
index 1ac48db..7b91633 100644
--- a/errors.php
+++ b/errors.php
@@ -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>";
?>