Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.219.81.129
<?php
//lib16107 lib16103
ini_set('display_errors', 'on');
include("../sms/sendsmsapiv1.php");
ini_set('memory_limit','900M');
ini_set('max_execution_time',900);
if(!isset($_GET['funivcode']) || !isset($_GET['fevent']) || !isset($_GET['usertype']) || !isset($_GET['fsentuser']) )
{
echo "<center><h2 style='color: red'>Invalid Parameters<h2></center>";
die();
}
$univcode = trim($_GET['funivcode']);
$fevent = trim($_GET['fevent']);
$usertype = trim($_GET['usertype']);
$fsentuser = trim($_GET['fsentuser']);
$sms = new SMS($univcode, $fevent);
$sms->sendGeneralizedBulkSms($usertype, $fsentuser);
// var_dump($fsentuser);
?>
|