Jonny Menmonic - 2012-03-10 10:37:43
Hello Mr. Lemos,
I’m a little confused with the php 5 SOAP extension.
I trying to find some resources about soap authentication together with some simple response from the function as for example request:
$client = new SoapClient('http://test.com/sms?wsdl');
$param = array(
'a' => '1',
'b' => '2',
'LicenseKey' => '12321312312321312323123'
);
$result = $client->SimpleTotal($param);
What will be the server in php5 with SOAP extension to return a+b and handle authentication with mysql?
Can you help me?
Thank you in advance.