Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~3K People Reached
Favorite Forums
Favorite Tags
php x 2

2 Posted Topics

Member Avatar for rajabhaskar525

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"); ?> …

Member Avatar for Bishnoi_1
1
2K
Member Avatar for Shikha_1

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 …

Member Avatar for Sangeeta_2
0
219

The End.