Thanks for your suggestion traq!
So, how do I actually use it?
Like this -
? I'm sorry, but I've never really used php functions...Code:if(checkemail($email)) { echo 'yes'; } else { echo 'no'; }
Thanks for your suggestion traq!
So, how do I actually use it?
Like this -
? I'm sorry, but I've never really used php functions...Code:if(checkemail($email)) { echo 'yes'; } else { echo 'no'; }
yeah, though you probably won't beechoing anything right then. Maybe more likePHP Code:// . . .
if( !checkemail( $_POST['useremail'] ) ){
/* throw an error */
}
// . . .
Thanks for that traq! (the echo was just to try and tell if I was doing it right)
Bookmarks