I'd start with the preg_match as Jack pointed out.
This post has been edited by CTphpnwb: 10 October 2012 - 09:02 AM




Posted 10 October 2012 - 09:02 AM
This post has been edited by CTphpnwb: 10 October 2012 - 09:02 AM
Posted 10 October 2012 - 09:16 AM
JackOfAllTrades, on 10 October 2012 - 09:43 AM, said:
$PhonePattern = "/\(\d\d\d\) \d\d\d-\d\d\d\d/";
Posted 10 October 2012 - 10:21 AM
if (!preg_match('/^\(\d{3}\) \d{3}\-\d{4}$/') , $Phone))
{
header('location:CreateAccount.htm');
exit();
}
else
{
$Phone = $_GET['txtPhone'];
}
This post has been edited by hugoriffic: 10 October 2012 - 10:32 AM
Posted 10 October 2012 - 10:39 AM
$PhonePattern = "\(\d\d\d\) \d\d\d-\d\d\d\d";
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
