views:

19

answers:

1

Hello,

Is it possible to setup a two-way SMS gateway using either Ozeki or Wammu? (I'm using windows)

This is what i want to implement

  • Get messages from users
  • Filter them according to "Keywords" they've used
  • Send those as HTTP requests to a PHP script located on a server (external)
  • Do a SQL query
  • Get results and message the user back (SMS)

Thanks

A: 

To implement two way SMS service you need a short code (like 57575 etc.,).

here are the links for SMS short code providers

http://www.mysmsmantra.com/shortcode.html

http://www.vfirst.com/sms-text-shortcode.php

http://www.1clicksms.com/

http://www.usshortcodes.com/

Google for more links

You can send HTTP requests from PHP script to another server using cURL

If your are successful in sending message from PHP and cURL it is not much difficult to manage it in database.

srinivas