Created
April 10, 2012 16:04
-
-
Save ringmaster/2352419 to your computer and use it in GitHub Desktop.
index.php on beacon.habariproject.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$out = date('r') . "\n"; | |
$out .= var_export($_GET,true) . "\n"; | |
$out .= var_export($_POST,true) . "\n"; | |
file_put_contents(dirname(__FILE__) . '/update.log', $out); | |
header('Content-type: application/xml'); | |
echo file_get_contents('beacon.xml'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment