On 8 Sep, 18:27, "Robert Gonzalez" <
robert.anthony.gonza...@gmail.com>
wrote:
> Doesn't the Laconi.ca application <
http://laconi.ca/> have SMS handling
> built into it? Maybe you could crack that open and learn from it.
>
> On Sun, Sep 7, 2008 at 2:33 AM, Manish Khanchandani <
>
>
>
>
naveenkhanchand...@gmail.com> wrote:
>
> > hi
> > you can visit sms reminder site:
> > just register to that site and set reminder and then you will sms at that
> > time.
> > this is made using posting the fields to one of the sms gateway site.
> > thanks
>
> > ----- Original Message -----
> > From: <
skyi...@gmail.com>
> > To: "Professional PHP Developers" <
Professi...@googlegroups.com>
> > Sent: Sunday, September 07, 2008 2:35 PM
> > Subject: [Pro. PHP Dev.] Reg: fsocket for sending sms
>
> > > Hi all,
>
> > > I m imai a college student from India. I need to develop a SMS
> > > service form my college.
> > > I am beginner in php. I need you help in sending sms through http.
>
> > > The post either via GET or POST needs to be done on
>
> > >
http://bulksms.bankofsms.com/sendsmsv2.asp
>
> >
http://bulksms.bankofsms.com/sendsms.asp?user=username&password=mypas...
> > > PhoneNumber=91822012345&flash=1
>
Thats not the way it works. While there are some standards for SMS
handling (see the Kannel project) aggregators implement their protocol
on top of HTTP (as is the case here). The only source of API
information is the API provider.
But there's enough information in the example above to suggest that it
is trivial - just rewrite the URL and do a GET, then parse the result.
C.