i have this line for validation email and non empty email field:
if ( filter_var($tmpEmail, FILTER_VALIDATE_EMAIL) == TRUE) || (!empty($email)) {
...
}
but i see this error :
Parse error: syntax error, unexpected '||' (T_BOOLEAN_OR) in
how to fix this error?