Any examples how to do that? In a php script.. I know they're (BMT) doing a HTTP request on the correct php file; and I'm just E-Mailing the _POST array back to myself, just to test. But it's empty! Maybe it's something to do with that newfangles xml malarky.. Anyway, does anyone have an example of how to get at the data they send? Thanks, Jamie.
I had to use: Code: $xmlString = file_get_contents("php://input"); $xml = simplexml_load_string($xmlString); To get the POST variable.
Ah, I got it working, thanks everyone. If anyone else has problems with this, there's some great info on BMT's site here: http://help.bmtmicro.net/VendorDocs/id/XMLHelp Cheers, Jamie.