blob: 72ac4dc178bfc776c8cacdd9e80ac2a4f2eec1bb (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
$post_data = $_POST["key"];
$filename ="./key.txt";
$handle = fopen($filename, "w");
if (!empty($post_data)) {
fwrite($handle,$post_data);
}
fclose($handle);
return 1;
?>
|