Sorrow Posted November 25, 2006 Share Posted November 25, 2006 Is there anyone that can direct me to a good tutorial about field validation in php. Here's what i wanna do: I have my form and lets say in the First name i only whant the person to be able to enter only Letters, and for email i want it in the rught format like : [email protected] and the phone only numbers .is there any good tutorials about this pls Link to comment https://forums.phpfreaks.com/topic/28452-solved-little-help-bout-validation-pls/ Share on other sites More sharing options...
alpine Posted November 25, 2006 Share Posted November 25, 2006 I don't know of any tutorials for you, but here is a start using regex:[code]<?phpif(eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$",$email)){ // $email ok}if(preg_match("/^[a-z A-Z]+$/", $name)){ // $name contains only letters but allowing spaces}if(preg_match("/^[0-9]+$/", $phone)){ // $phone contains only numbers}?>[/code] Link to comment https://forums.phpfreaks.com/topic/28452-solved-little-help-bout-validation-pls/#findComment-130242 Share on other sites More sharing options...
Sorrow Posted November 26, 2006 Author Share Posted November 26, 2006 TY very much its is working perfectly Link to comment https://forums.phpfreaks.com/topic/28452-solved-little-help-bout-validation-pls/#findComment-130365 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.