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 : 18.224.64.51


Current Path : /var/www/html/studentportal_test/
Upload File :
Current File : /var/www/html/studentportal_test/sendsmsapi.php

<?php

function sendsmaapi($username,$password,$from,$to,$text,$category)
{
	$url = "http://www.myvaluefirst.com/smpp/sendsms?";
	$url .="username={$username}&password={$password}";
	$url .="&to={$to}";
	$url .="&udh=0";
	$url .="&from={$from}";
	$text = urlencode($text);
	$url .="&text={$text}";
	$url .="&dlr-mask=1&dlr-url";
	if($category !='')
		$url .="&category={$category}";
	//echo $url;
	return file_get_contents($url);
}
?>