ralitza
04-29-2006, 11:50 PM
i am currently using the following to validiity form fields
$email=stripslashes(htmlspecialchars($_POST['email']));
thats fine and all, but i would like the user to be able to login using their email but htmlspecialchars filters out @. what is another way to secure my forms but allow users to login with their email?
$email=stripslashes(htmlspecialchars($_POST['email']));
thats fine and all, but i would like the user to be able to login using their email but htmlspecialchars filters out @. what is another way to secure my forms but allow users to login with their email?