Hey people,
Ive been trying to check if a variable has a @, if it does echo something.. however I have tried:
elseif(strpos($mail, chr(64), 0) > 0) { echo... }
and
if (strpos($mail, "@") != false)
on the second one it is very weird.. i get no errors but its like the line get ignored even if $mail has or doesnt have a @ it gets ignored.
The first one just gave me parse errores.