| 日 | 一 | 二 | 三 | 四 | 五 | 六 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 |
MIDlet-Install-Notify - the PHP Catch
Don't know how to handle or read the POST? Try this:
<?php
$File = "YourFile.txt";
$Handle = fopen($File, 'a');
$Data = file_get_contents("php://input");
fwrite($Handle, $Data);
fwrite($Handle, ",");
fwrite($Handle, $_SERVER['HTTP_REFERER']);
fwrite($Handle, ",");
fwrite($Handle, $_SERVER['HTTP_USER_AGENT']);
fwrite($Handle, ",");
fwrite($Handle, $_SERVER['REMOTE_ADDR']);
fwrite($Handle, "\n");
fclose($Handle);
?>
login to post comments

Recent comments