diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2012-01-05 21:25:22 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2012-01-05 21:25:22 -0800 |
commit | 1ecb2eea06365d018bdfb764cce650d6a4096879 (patch) | |
tree | ce38356d3b386e59aa419497644f8f35f5a4ccb9 | |
parent | 509f7a404582e9a69810333d58adcbdca57ad652 (diff) | |
download | pathery-1ecb2eea06365d018bdfb764cce650d6a4096879.tar.xz |
Achievements Page started
-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>";
?>
|