2
You’re making that mistake:
Warning: preg_match(): No ending delimiter ' ' found in /home/j17oloba/public_html/libs/lib.php on line 536
function lib_checkemail($email)
{
if(preg_match("^[0-9a-z]([-_.]?[0-9a-z])*@[0-9a-z]([-.]?[0-9a-z])*\\.[a-z]{2,3}$", $email, $check))
{
Try to put your regular expression between characters
//
. Example:/abc/
.– Oeslei
You need to use delimiters in your regex, as @Oeslei mentioned. See if you solve, otherwise mention here.
– WyllianNeo