Php – Sending SMS through USB interfaced GSM Modem in PHP

gsmPHPsms

I have searched on Google and found that I have to use AT commands to send SMS here is the link,

http://gonzalo123.wordpress.com/2011/03/21/howto-sendread-smss-using-a-gsm-modem-at-commands-and-php/

But in this tutorial he is using serial interfaced GSM modem, is it possible to send SMS via USB interfaced GMS modem. Please guide me.

Best Answer

A USB interfaced GSM modem will be presenting a USB serial interface, usually / hopefully conforming to the USB CDC specification. In other words you can treat it as a virtual COM port and the tutorial you linked to will still be relevant for you.

Related Topic