<?php
	print "aa";
$str = file_get_contents("php://input");

$fname = "phpinput.txt";

$fh=fopen($fname,"wb");

fwrite($fh, $str);

fclose ($fh);

?>