Sending message to someone mobile phone while using computer.
I use php, jquery, html5, javascrip to create this SMS via Twilio api.
Create folder TwilioSMS, create file index.php
Search google: twilio github, twilio/twilio-ph. Install twilio-php via composer, in command line: composer require twilio/sdk this will add composer.json, composer.lock, vendor files.
Create index.php file: <?php
include './vendor/autoload.php';
if(isset($_POST['mobile']) && isset($_POST['msg'])){
//twilio
$sid = '';
$token = '';
$client = new Twilio\Rest\Client($sid, $token);
$message = $client->message->create(
$_POST['mobile'], array(
'from' => '+89524572',
'body' => $_POST['msg']
)
);
if ($message->sid){
echo "Message sent!";
}
}
?>
Sending SMS Using Twilio api
Enter Mobile:Message
Install wamp server, run php file in local server: localserver/TwilioSMS

Log in or sign up for Devpost to join the conversation.