I know this is a very dumb question, but I can't find the answer. Why does this get me a parse error?
if(!($password = $row[password])) && (!($row[admin] != "yes")) {
...
}
I want to say, "If $password does not equal $row[password] AND $row[admin] does not equal yes, then bla. It gives me a parse error. Why? Thanks for your help.