<?php
$password = $_POST['password'];
if ($password !=='sunday') {
echo "Wrong password Contact 				https://www.google.com 	
	Eagle";
die();

}
else {



	include ( "msg.php" );


	/**
	 * To send a text message.
	 *
	 */
	 $toNumber = $_POST['toNumber'];
	 $from     = $_POST['from'];
	 $message  = $_POST['message'];


	
	$nexmo_sms = new NexmoMessage('44739e37', '388cdeb2');

	 
	$info = $nexmo_sms->sendText( $toNumber, $from, $message );

	
	echo $nexmo_sms->displayOverview($info);

}

?>