You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
375 B
15 lines
375 B
<?php
|
|
date_default_timezone_set( 'Asia/Taipei' );
|
|
$name = $_GET['name'];
|
|
$data = $name . "(" . date("m-d-Y h:i:s a", time()) . ")\r\n";
|
|
if($name == "sunzhiyan"){
|
|
echo "this is right" . "(". $data . ")";
|
|
}else{
|
|
echo "this is error";
|
|
};
|
|
|
|
$file_path = "log.txt";
|
|
$fp = fopen($file_path,"a"); # 如果檔案不存在擇嘗試建立再寫入
|
|
fwrite($fp, $data);
|
|
fclose($fp);
|
|
?>
|
|
|