i am trying to :
$ReqBody = "mytext=" . urlencode("hello world");
Header("POST /getmsg.php HTTP/1.1");
Header("Content-Type: application/x-www-form-urlencoded; charset=utf-8");
Header("Content-Length: ".strlen($ReqBody));
Header("");
Header($ReqBody);
and i also have the getmsg.php script which prints out the POST variable $_POST['mytext']
when i try to send the data with a simple html <FORM> and method="post" i have no problems
BUT
with the script above it doesn't work
PLEASE PLEASE PLEASE HELP ME !!!
How do i send POST data , even not using Header