| Server IP : 172.64.80.1 / Your IP : 172.70.131.125 Web Server : Apache System : Linux mail.federalpolyede.edu.ng 5.10.0-32-amd64 #1 SMP Debian 5.10.223-1 (2024-08-10) x86_64 User : federalpolyede.edu.ng_idh35skikv ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/federalpolyede.edu.ng/httpdocs/eace_entranceForm/ |
Upload File : |
<?php
function sendsms_get($username, $password, $message, $senderid, $recipients) {
$message = urlencode($message);
$senderid = urlencode($senderid);
$url = 'http://api.smartsmssolutions.com/smsapi.php?username='.$username.'&password='.$password.'&sender='.$senderid.'&recipient='.$senderid.'&message='.$message.'&';$send = file_get_contents($url);return $send;
}
$senderid = 'FedPolyEde';
$recipients = '2348034496359';
$username = 'aspoa';
$password = 'aepies12';
$message='this is a';
$url = 'http://api.smartsmssolutions.com/smsapi.php';
$get_sms = sendsms_get($username, $password, $message, $senderid, $recipients);
echo $get_sms;
?>