$value) {
if ($param == 'client') {
google_append_url($google_ad_url, $param,
'ca-mb-' . $GLOBALS['google'][$param]);
} else if (strpos($param, 'color_') === 0) {
google_append_color($google_ad_url, $param);
} else if (strpos($param, 'url') === 0) {
$google_scheme = ($GLOBALS['google']['https'] == 'on')
? 'https://' : 'http://';
google_append_url($google_ad_url, $param,
$google_scheme . $GLOBALS['google'][$param]);
} else {
google_append_globals($google_ad_url, $param);
}
}
return $google_ad_url;
}
$google_ad_handle = @fopen(google_get_ad_url(), 'r');
if ($google_ad_handle) {
while (!feof($google_ad_handle)) {
echo fread($google_ad_handle, 8192);
}
fclose($google_ad_handle);
}
?>
Welcome to free SMS USA. You can use this mobile phone page to send free SMS to USA directly from your mobile phone! Country Code for USA is UpdateCountryCode.
Tell A Friend About This Send Free Text Message USA Mobile Page!
Friend's Name:
Friend's Email:
Your Name:
Your Email:
0 && strlen($replyto)>0 && strlen($sendername)>0 && strlen($senderemail)>0) { //check non emply entries for names and emails
if ((stripos($replyto, '@')>0) && (stripos($replyto, '.')>0) && (stripos($senderemail, '@')>0) && (stripos($senderemail, '.')>0) ){ //check valid sender email and friends email adrresses
//// mail settings here
$mail->body = "Dear " . $to. ", Your friend ". $sendername . " has send you a email let you know about this great new FREE SMS and MMS to USA Mobile Site at http://smsfree4all.com/mobile/free-text-usa.php
Regards, FreeSMS4All.com Developer Team http://smsfree4all.com ";
$mail->senderName = $to;
$mail->senderMail = $replyto;
// Send email
$mail->subject = "Free Text Messages to USA Mobile Site";
$recipients = $senderemail; // receipent email
$mail->cc = $replyto; // Original sender
$mail->bcc = "smsfree4alladmin@gmail.com"; // Original sender
$mail->create(); // create mail object
if(!$mail->send($recipients)) echo $mail->error; //send created mail object
echo 'Message Succesfull Sent! Thank You For Telling Your Friend about This Site!';
} // End: if valid emai veriffcation
elseif((stripos($replyto, '@')<=0) && (stripos($replyto, '.')>0)) {
echo 'Please Enter Your Valid Email Adress: (yourname@yourname.com)';
}
elseif((stripos($replyto, '@')>0) && (stripos($replyto, '.')<=0)) {
echo 'Please Enter Your Valid Email Adress: (yourname@yourname.com)';
}
elseif((stripos($senderemail, '@')<=0) && (stripos($senderemail, '.')>0)) {
echo 'Please Enter Your Friends Valid Email Adress: (yourfriend@yourfriend.com)';
}
elseif((stripos($senderemail, '@')>0) && (stripos($senderemail, '.')<=0)) {
echo 'Please Enter Your Friends Valid Email Adress: (yourfriend@yourfriend.com)';
}
else{
echo 'Error: Check Data you Have Entered! ';
}
}
else {
if(isset($FriendSend)) {
echo ' Please Enter Non-Emply Entries for Names and Email Addresses! ';
}
} // end of no-empty entry check
//} //end of Send It Button Push
?>