Jump to content

T_LOGICAL_AND


vipsa

Recommended Posts

If you have code like this where you have two conditions

 

 

<code>

  if (isset($_POST['action'] and $_POST['action'] == 'login')
          {
    if (!isset($_POST['email'] or $_POST['email'] == '' or
            !isset($_POST['password']) or $_POST['password'] == '')
            }
            $GLOBALS['loginError'] = 'Please fill in borh field';
            return false;
            }
</code>
 
Why am I getting this error:
Parse error: syntax error, unexpected 'and' (T_LOGICAL_AND), expecting ',' or ')' in C:\wamp\www\learnphp\includes\access.inc.php on line 4
Link to comment
https://forums.phpfreaks.com/topic/283177-t_logical_and/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.