0

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

4

1 回答 1

2

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

于 2013-09-06T05:57:50.677 回答