How I do the following?
If "$Email" is not a valid email address, display the following:
echo "Your email address is invalid.";
exit;
If "$Telephone" is not a valid phone number (USA), display the following:
echo "Your telephone number is invalid.";
exit;
If "$Fax" is not a valid phone number (USA), display the following:
echo "Your fax number is invalid.";
exit;
Thanks for your help in advance.