1 Answers
$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”;
};
You should check the line on which the error occurs. You are
missing a closing double quote on this line:
Right line :
$checkusrdel = mysql_query(“SELECT * FROM craffyusers WHERE
username = ‘”.$un9.”‘”) or die(mysql_error());