A little error in your isEmailValid function and you have a risk of SQL injection in your method isEmailExists !!
isEmailValid
isEmailExists
SELECT * FROM ".$tableName." WHERE email='".$email."';
If you use mysqli extension, you have to use real_escape_string (or mysqli_real_escape_string), if you use PDO, use named parameter.
mysqli
real_escape_string
mysqli_real_escape_string
PDO
Example :
SELECT * FROM ".$tableName." WHERE email='".mysqli_real_escape_string($mysqli, $email)."';
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
A little error in your
isEmailValidfunction and you have a risk of SQL injection in your methodisEmailExists!!If you use
mysqliextension, you have to usereal_escape_string(ormysqli_real_escape_string), if you usePDO, use named parameter.Example :