Hi i am developing a new website for mobile shop in php, I need to implement to send sms for the login users, please help me with code in php

to send sms form your website you need to integrate SMS API into your website code With below Steps:

Integrating HTTP API: Download sendsms php class 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");
?>

for CMS like joomla, opencart, woo commerce, zencart, wordpress, SpringEdge's messaging Modules can be used.

commented: the thread is 4 years old, its DEAD, don't post to old threads -3
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.