<?php
$message = urlencode("Hello"); 
			$sender= urlencode("24 SEVEN"); 
			$mobile = "777904054";
			$url = 'http://203.153.222.25:5000/sms/send_sms.php?username=seven&password=Seven321&src=24%20SEVEN&dst=94'.$mobile.'&msg=Hello&dr=1';
			
			$ch = curl_init();
			curl_setopt($ch, CURLOPT_URL, $url);
			curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
			curl_setopt($ch, CURLOPT_HEADER, true);
			$data = curl_exec($ch);