You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 11, 2024. It is now read-only.
The email verification script checks for the "@" symbol only.
So if you have email@email, it is valid.
Can we use this function to validate the email? $email = test_input($_POST["email"]); if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $emailErr = "Invalid email format"; }
The text was updated successfully, but these errors were encountered:
I agree, this is not a correct method.
It is implemented through jquery and is embedded in the framework. With this question, I'll turn to the framework developers.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The email verification script checks for the "@" symbol only.
So if you have email@email, it is valid.
Can we use this function to validate the email?
$email = test_input($_POST["email"]); if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $emailErr = "Invalid email format"; }
The text was updated successfully, but these errors were encountered: