Reputation: 493
I would like to use SMS service on another server.
The URL for sending SMS is
http://www.abcd.in/test/SMSService.cfc?method=SendSMS&Message=msg&mobno=982545331&AppID=lrs-ESID
I want to use this URL from within PHP script. I do not know how to do it. Please Help
Upvotes: 0
Views: 207
Reputation: 1402
It seems you just need to call that url with parameters. There's couple of ways to do it. One of them is to use the file_get_contents function, other - to use cURL
Here are some examples how to do it: http://www.blogs.zeenor.com/it/how-to-call-the-web-services-through-php.html
Upvotes: 2