I want to send the POST data to the given external url like http://www.example.com/catchPostData.php, where the catchPostData.php looks like this:
<?php
echo $_POST['somedata'];
?>
and open this url with the data I've send.
I've tryed to use cURL, but it returns from the given url, and I want to stay there!
Can anybody help me with this?