Hello,
I am new in PHP.Please tell me how to implement API in php.
Thanks
Which API ?
I want to send Sms from my site.
I have Api of service provider but i don't know how to use API
Check the documentation.
First of all you will have to connect to their service,
eg:-
$soapClient = new SoapClient("https://soapserver.example.com/asumption.asmx?wsdl");
// Prepare SoapHeader parameters
$sh_param = array(
'Username' => 'username',
'Password' => 'password');
$headers = new SoapHeader('http://soapserver.example.com/webservices', 'UserCredentials', $sh_param);
Like Pritaeas said, just go through the documentation of the web service you will find it easy.
how i use Flicker API in PHP ????
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.