Public Voice Network
- design works vs. carl dek… 99
- Quick Survey for Philosop… 2727
- best restaurant websites 2525
- touch screen 11
- Pic of the Day 1049610496
- God is quite busy 7070
- blog 3121531215
- Medium Format 307307
- Need a what.cd invite 4040
- Got a blind date tonight… 2727
- Canadian Politics con'… 5555
- Slideshow CSS/Java 55
- Favorite brands 2020
- EC: Shoe at Rush Hour 77
- Baseline’s website 1111
- Dexter, Season III 4444
- Trapped in Elevator 1010
- FMT 120508 2727
- Official 2008-09 NHL Thre… 113113
- Politics 50615061
- CS4 Question 77
- flash question 88
- you must know! 55
- rippity rip 5959
PHP: email validation form 1212 Responses
Last post: 2 years, 4 months ago | Thread started: Aug 1, 06, 7:47 a.m.
Out of context: Response #4 [Aug 1, 06, 7:47 a.m.]
- kinetic
this function has always served me well:
function check_email($email) {
if(eregi("^[a-z0-9\._-]+@+[a-z0… $email)) {
return TRUE;
} else {
return FALSE;
}
}

- View thread


