vote up 1 vote down star
2

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.

flag

62% accept rate
This question have been asked many times and I myself have answered 2/3 times. Please search. – Shoban Sep 4 at 9:46

closed as exact duplicate by Developer Art, Shoban, David Dorward, therefromhere, sth Sep 5 at 18:57

8 Answers

vote up 5 vote down check

I am still using clickatell regarding sms. It is not free but they rock

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

Useful : http://www.sephiroth.it/tutorials/flashPHP/sms/

link|flag
vote up 1 vote down

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

link|flag
checked and pretty expensive to send an sms to Belgium (0,88 euro per sms) – Natrium Sep 4 at 9:49
I didn't check the prices for belgium. – Stephen lacy Sep 4 at 10:15
vote up 0 vote down

I read this a nifth tool with a lot of possibilities. I did not use it myself though:

http://www.hendrik-sattler.de/scmxx/index.html

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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:

https://www.voipbuster.com/myaccount/sendsms.php?username=xxxxxxxxxx​ &password=xxxxxxxxxx&from=xxxxxxxxxx&to=xxxxxxxxxx&text=xxxxxxxxxx

Explanation of the variables:

  • username: your VoipBuster username
  • password: your VoipBuster password
  • from: your username or your verified phone number. Always use international format for the number starting with +, for instance +491701234567
  • to: the number you wish to send the sms to. Always use international format starting with +, for instance +491701234567
  • text: the message you want to send

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.

voipbuster instructions

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.