Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// assume the incoming phone number is in $_POST['phone']
$tmp = explode('-',$_POST['phone']);
if (count($tmp) != 3) $err_msg = 'Sorry phone number is in the wrong format';
for ($i=0;$i<3;$i++)
if (!is_numeric($tmp[$i]))
$err_msg = 'Sorry phone number is in the wrong format';
$phone_number = '123-456-5559';
$pattern = "/\d{3}-\d{3}-\d{4}/";
if (!preg_match($pattern,$phone_number,$dummy)){
echo("Please enter 999-999-9999.");
} else {
# etc.