Possible Duplicates:
SMS from web application
Send and receive SMSs to a PHP script?
Hi There
Does anyone know if an sms web application which I can use in my php script to send sms messages?
thank you in advance.
|
2
|
Hi There Does anyone know if an sms web application which I can use in my php script to send sms messages? thank you in advance.
|
|||
|
closed as exact duplicate by Developer Art, Shoban, David Dorward, therefromhere, sth Sep 5 at 18:57 |
|
|
I am still using clickatell regarding sms. It is not free but they rock |
||
|
|
|
|
I've used 2sms.com in the past. They have pay as you go options and a fairly simple http interface, PHP code sample here. |
||
|
|
|
|
You can create a redirection form with sms data to one of the already existing free services. You just need to create an intermediate page that gathers data from the form (the mobile number and text message) and selects to which service it will send the data. |
|||
|
|
|
|
Clickatell are the cheapest I could find and here is the link for some php code which uses their api http://www.clickatell.com/developers/php.php |
||||
|
|
|
I read this a nifth tool with a lot of possibilities. I did not use it myself though: |
||
|
|
|
|
You can create a redirection form with sms data to one of the already existing free services. You just need to create an intermediate page that gathers data from the form (the mobile number and text message) and selects to which service it will send the data. |
||
|
|
|
|
I wouldn't bother with a third party SMS service but connect a GSM modem directly to the servers serial port. Then use PHP to send simple "AT" commands to the modem to send your SMS texts. The only problem I have had in the past however has been when the server room is in the middle of a building (especially a metal framed building) that GSM coverage in the room can be patchy or non-existent. So be sure to check out coverage with a variety of network operators and choose the one with the best signal. Hope this helps. Ian |
||
|
|
|
|
I use betamax for this. With this I can sent sms for 5 cts to phone numbers in the Netherlands. The url looks like this:
Explanation of the variables:
I think this is a pretty easy solution(you could just do a simple file_get_contents) and the price ain't to bad for me neither. |
||
|
|