Jump to content

unexpected T_BOOLEAN error


Darkranger85

Recommended Posts

Hey guys,

 

I'm having a problem with my code and am hoping that someone can help me narrow it down. The full error I get is as follows:

 

Parse error: syntax error, unexpected T_BOOLEAN_AND, expecting ')' in C:\wamp\www\testsite\login.php on line 9

 

Here is the code is question

 

<?php
    include 'core.inc.php';
    include 'connect.inc.php';
    session_start();
         
    $username = strip_tags(trim($_POST['user']));
    $password = strip_tags(trim($_POST['pass']));

    if(!empty($username&&$password)){
        mysql_select_db('adatabase') or die('Couldnt connect to db!');
    
        $query = mysql_query("SELECT * FROM users WHERE username='$username'");
        $numrows = mysql_num_rows($query);        
    
      if($numrows != 0){
            
         while ($row = mysql_fetch_assoc($query)){
              $dbusername = $row['username'];
              $dbpassword = $row['password'];
              $salt = $row['salt'];
              $password = crypt($password,$salt);
              $seclevel = $row['seclevel'];
          }
         
         if($seclevel > 1){
             die('Please activate your account before logging in.');
         }
         
         if ($username == $dbusername && $password == $dbpassword){
                echo "Welcome back! Click <a href='overview.php'>here</a> to proceed!";
                $_SESSION['username'] = $dbusername;                

         }else{
                echo "Incorrect username or password!";
         }
        
     }else{
            die ('Incorrect username or password!');
        }
    
    }else{
     die('Please enter a username and password!');
    }

?>

 

I've been staring at it all morning and I cant for the life of me figure out where a parenthesis is missing. I went down the code line by line and checked every single one to make sure it had a "mate" so to speak. And as for the unexpected "T_BOOLEAN" I have no idea lol.

 

Thanks for your help in advance!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.