File "output.php"
Full path: /www/ansys/qgis/000_nasu/output.php
File size: 149 B
MIME-type: text/x-php
Charset: utf-8
<?php
print "aa";
$str = file_get_contents("php://input");
$fname = "phpinput.txt";
$fh=fopen($fname,"wb");
fwrite($fh, $str);
fclose ($fh);
?>