tippytarka
Programmer
hi there,
as you can see i'm trying to execute two commands if '$to_count > 100' is true ....but i'm having some difficulty trying to make it happen. can anyone help??
if ($to_count < 100) {
echo "Sorry, your counts are too low";
} else if ($to_count > 100) {
$send = mail($to, $subject, $message, $headers);
return $send;
echo "Your results have been sent to your email address where you will receive
instruction to continue with your order";
}
cheers!
as you can see i'm trying to execute two commands if '$to_count > 100' is true ....but i'm having some difficulty trying to make it happen. can anyone help??
if ($to_count < 100) {
echo "Sorry, your counts are too low";
} else if ($to_count > 100) {
$send = mail($to, $subject, $message, $headers);
return $send;
echo "Your results have been sent to your email address where you will receive
instruction to continue with your order";
}
cheers!