No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Re: You just need to integrate SMS API into your website code With below Steps: Integrating HTTP API [Download sendsms php class](http://www.springedge.com/developersapi.html) code Use below code in your file to send sms <?php include 'sendsms.php'; $sendsms=new sendsms("http://alerts.springedge.com/api" , "API key HERE", "sender ID HERE"); $sendsms->send_sms("99xxxxxxxx", "MESSAGE HERE" , "", "xml"); ?> … | |
Re: To send sms form your website, no need to change settings in PHP.ini or htttpd.config, You just need to integrate SMS API into your website code With below Steps: Integrating HTTP API[ Download sendsms php class code](http://springedge.com/php-send-sms-code.html) Use below code in your file to send sms <?php include 'sendsms.php'; $sendsms=new … |
The End.