File "recvg.php"
Full path: /www/ri/recvg.php
File size: 541 B
MIME-type: text/x-php
Charset: 8 bit
<?php
//RI‚МЊv‘Є‚МѓJѓEѓ“ѓg‚р•Ы‘¶
EXTRACT($_POST);
EXTRACT($_GET);
//$data = isset($_POST["gps"]) ? htmlspecialchars($_POST["gps"]) : "";
$data = isset($_GET["gps"]) ? htmlspecialchars($_GET["gps"]) : "";
$file_name = date("Ymd",time()) .".log";
$fp = fopen("./gps/" .$file_name, "a");
$nowUtime = time();
fwrite($fp,"[" .date("Y-m-d H:i:s",time()) ."] " ."\n" .$data ."\n");
fclose($fp);
$fp2 = fopen("new_gps.log", "w");
$nowUtime = time();
fwrite($fp2,"[" .date("Y-m-d H:i:s",time()) ."] " ."\n" .$data ."\n");
fclose($fp2);
?>