How can i make 2-way works with users and accounts

How can i make 2-way works with users and accounts SearchSearch
Author Message
Issa Qandil
Unregistered guest
Posted on Thursday, May 06, 2004 - 03:04 pm:   

how can i make 2-way works with users and accounts and replay to them throw ms access or any program which make account and choose the thing to send from the message
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 2514
Registered: 10-2002
Posted on Thursday, May 06, 2004 - 06:43 pm:   

I don't have any examples that interface into Microsoft Access.

But I can point you to several examples of 2-way SMS command processing:

The simplest example is the ECHO example in our documentation:

http://www.nowsms.com/documentation/ProductDocumentation/2_way_sms_support.htm

In that example, it is basically like NowSMS launching a batch file, passing details of the received message to the batch file. (This example doesn't actually spawn a batch file, but it could be adapted to call a batch file instead of just using the ECHO command.)

There's also a simple example of a Windows script being used in a 2-way command at the following link:

http://support.nowsms.com/discus/messages/1/333.html

This is a good example, because the received message information is passed to a local VBScript file. If you can use VBScript to access your database, then you just need to use the code in that thread as a starting point.

There is a good simple PHP example here:

http://support.nowsms.com/discus/messages/1/3991.html
Basically, the PHP script runs on a separate web server somewhere, and if you can use PHP to access your database, then you can use this script as a starting point.

-bn