PHP equivalent to XMLHtttpRequest functions



Is there a PHP equivalent to the JavaScript XMLHttpRequest function:
.......
myrequest.open('POST', url, true);
........
myrequest.send(data);

In other words, I'd like to get data from another web page that needs to
receive input via the POST method.

Thanks,
Edward Hass


.