i need php valdiations for the following things
i have little bit idea about them
phone number with areacode
mobile number
gender
password and confirm password
with regards
theboss
Moderator: General Moderators
Code: Select all
if(eregi("^[a-zA-Z0-9_]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$]", $email))
{
return FALSE;
}