$roughHTTPPOST = php://input;
$roughHTTPPOST = readfile("php://input");
<?php if(!isset($_POST) || empty($_POST)) { ?> <form name="form1" method="post" action=""> <input type="text" name="textfield"><br /> <input type="submit" name="Submit" value="Submit"> </form> <?php } else { $roughHTTPPOST = readfile("php://input"); echo $roughHTTPPOST; } ?>
Jump To Top of Thread