Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I get an error with my PHP script, "Unexpected T_STRING". Could someone take a look at why this happens?

$checkban = mysql_query("SELECT * FROM craffybans WHERE username = '" .$un9. "'") or die(mysql_error());

        if(mysql_num_rows($checkban) != 0){
            $query7 = "SELECT * FROM craffybans WHERE username = '".$un9."'";
    $result7 = mysql_query($query7) or die(mysql_error());
    while ($row7 = mysql_fetch_assoc($result7)) {
        $reas = $row7['reas'];
        $timeb = $row7['time'];
        $tban = $row7['tban'];
            $tip = $row7['ipd'];
    };
    if($timeb == "perm"){
        $bant = "Permanent";
    }else{
        $bant = $timeb;
    };
    $checkusrdel = mysql_query("SELECT * FROM craffyusers WHERE username = '".$un9."') or die(mysql_error());
    if(mysql_num_rows($checkusrdel) != 0){
    $acdel = "n";
    }else{
    $acdel = "y";
    };
    if(empty($tip)){
    $bank = "account ban";
    }else if($acdel == "y"){
    $bank = "account deleted + IP ban";
    }else{
    $bank = "account ban + IP ban";
    };
    $tban = date("F j \a\\t\ g:i a", strtotime ($tban));
    };
share|improve this question
You are missing a ". The syntax highlighting here should show you where – Pekka 웃 Apr 16 '11 at 9:34

2 Answers

up vote 1 down vote accepted

You should check the line on which the error occurs. You are missing a closing double quote on this line:

 $checkusrdel = mysql_query("SELECT * FROM craffyusers WHERE username = '".$un9."') or die(mysql_error());

It should be

 $checkusrdel = mysql_query("SELECT * FROM craffyusers WHERE username = '".$un9."'") or die(mysql_error());
share|improve this answer

you are missing this the closing " double quote

$checkusrdel = mysql_query("SELECT * FROM craffyusers 
    WHERE username = '".$un9."'") <-- add double quote 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.