I know I must be doing something simple wrong. I'm just trying to echo the value of $HTTP_RAW_POST_DATA.
Here is my test form:
<form action="quicktest.php" method="post" mimetype="text/xml" enctype="text/xml" name="form1">
<br>
<input name="hey" type="text" id="hey" value="nothing met">
<input type="submit" name="Submit" value="Submit">
</form>
Here is my PHP code on quicktest.php
<?php
print "$HTTP_RAW_POST_DATA<br>";
?>
When I try and echo or print $HTTP_RAW_POST_DATA I get nothing, anyone have the solution to why this wont work ?