Jump to content

[SOLVED] i need some help!


HAN!

Recommended Posts

Or/And with php (javascript can be disabled):

<?php
    $email = '[email protected]';
    $regex = "^[_+a-z0-9-]+(\.[_+a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]{1,})*\.([a-z]{2,}){1}$";
    if (!eregi($regex,$email))
    {
        echo 'Errror: Invalid email<br />';
    }
    else
    {
        //continue
    }
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.