Object: An html form submits 3 variables, $Login, $Pwd and $Data, to a PHP4 file. The $Login and $Pwd contains alphanumeric and the $Data contains an XML document for a request.
This XML doc must then be posted to an, outside server using https, .asp file with the 3 variables, just like a normal html form submit, but without leaving the current PHP file. The .aps file returns a new XML document, which needs further processing.
Problem: How do I do this?
Tried: Using PHP’s socket functions, but I’ am not sure if whas the right way.
Time is VERY critical, since this one is for my work.
Best Regards