0xV3NOMx
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 : 52.15.111.109


Current Path : /proc/thread-self/root/var/www/html/admission/
Upload File :
Current File : //proc/thread-self/root/var/www/html/admission/sendsms.php

<?php
	ini_set('display_errors', 'on');
	ini_set('memory_limit','900M');
	ini_set('max_execution_time',900);
	include("../sms/sendsmsapi_adm.php");

	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);

?>