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.
9 lines
238 B
9 lines
238 B
<?php
|
|
$postData = file_get_contents('php://input');
|
|
#echo "收到:" . $postData . "<br>";
|
|
|
|
$myfile = fopen("receive_inovance.txt", "a") or die("Unable to open file!");
|
|
fwrite($myfile, "Got it: " . $postData . "\n");
|
|
fclose($myfile);
|
|
|
|
?>
|