Hi
I need to write a script to send TExt msq to a mobile Phone, using soap and PHP. I Have no clue where to start and the tutorials i have found on the web make no sense.
This is the wsdl file supplied by the service provider.
http://www.exactmobile.co.za/interactiv ... .asmx?wsdl
PLease!!!! any help will be appreciated.
.::PHP SOAP ::. PLease HELP!!
Moderator: General Moderators
Install php5, enable the soap extension and try
see also:
http://de2.php.net/soap
http://devzone.zend.com/node/view/id/689
Code: Select all
<?php
$client = new SoapClient('http://www.exactmobile.co.za/interactive/interactivewebservice.asmx?wsdl');
$response = $client->SubmitMessage(array(
'Username'=>'user',
'Password'=>'pass',
'Reference'=>'ref',
'MobileNumber'=>'number',
'Message'=>'message'
));
var_dump($response);http://de2.php.net/soap
http://devzone.zend.com/node/view/id/689