Describe the bug
The bug is that I cant check whether the action is dislike or not action[!] => "dislike" just simply doesn't work or idk. I even checked for errors there was none.
Expected output
A clear and concise description of what output you expected.
SELECT * FROM notif WHERE to = "email@email.com" AND action != "dislike" AND action != "block"
Describe the bug The bug is that I cant check whether the action is dislike or not action[!] => "dislike" just simply doesn't work or idk. I even checked for errors there was none.
Information
Detail Code
$rows = $db->select("notif", "*", [ "to" => $email, "action[!]" => "dislike", "action[!]" => "block" ]);
Expected output A clear and concise description of what output you expected.
SELECT * FROM notif WHERE to = "email@email.com" AND action != "dislike" AND action != "block"