Re: [PHP] totally a newbie in sending phone number to a webserver

2013-05-21 Thread Farzan Dalaee
require_once('nusoap/nusoap.php'); $client = new nusoap_client('http://smsprovider.com/post/send.asmx?wsdl' ); $err = $client->getError(); if ($err) { echo 'Constructor error' . $err; } $parameters['username'] = ""; $parameters['password'] = ""; $parameters['to'

[PHP] totally a newbie in sending phone number to a webserver

2013-05-21 Thread Negin Nickparsa
I registered a SMS web service and I have username and password and there are methods as follow which I can use: balance receive send send to all send advanced status status advanced suppose I have a form and I will get the phone number from user also I have user name,pass and url of the web serv