How can sms messages be sent from a website to cell phones?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
websighteam
Forum Newbie
Posts: 2
Joined: Wed Jan 28, 2004 5:38 am

How can sms messages be sent from a website to cell phones?

Post by websighteam »

Hi there?

Could someone please tell me how I can send sms messages from a website to cell phones? Are there any components to use.Can anyone suggest some sample code?

Thanks in advance!!!
User avatar
JayBird
Admin
Posts: 4524
Joined: Wed Aug 13, 2003 7:02 am
Location: York, UK
Contact:

Post by JayBird »

User avatar
infolock
DevNet Resident
Posts: 1708
Joined: Wed Sep 25, 2002 7:47 pm

Post by infolock »

sweet, i was wondering about this myself


Edit :
5555555555@mobile.mycingular.com is for Cingular Wireless btw..
Last edited by infolock on Mon Mar 08, 2004 10:55 am, edited 2 times in total.
idotcom
Forum Commoner
Posts: 69
Joined: Thu Mar 04, 2004 9:24 pm

Post by idotcom »

You can use the php mail()

Every Phone provider has an email type address like this one. This one is for you know who.. AT&T users

$number = "6025551212@mobile.att.net";


mail("$number","$subject","$message","From: Form@Site.com");

Hope it helps.. Or gives you a start..
Post Reply