Hi, friends plz help me how to use randomly username and passward of way2sms account in my lava site core.php i m using this code
	
							
						
					Code:
	
	function sendsms($mobile, $text){
include_once "Way2Sms.php";
$sms=new Way2Sms();
$result=$sms->login('username','passward');
$sms->send($mobile,$text);
if($result)
{
echo "$outmg!";
}
else
{
echo "LoveForum: Cant send SMS,Contact Owner!<br>";
}
$sms->logout();
}