Here's my problem. I need to select all managers from my Managers table where the username is NOT admin. My query is as follows:
$query = "SELECT * FROM Managers WHERE username != 'admin' ORDER BY username";
When I go to run my script I get an invalid resource. How do I tell it to query my table for what I'm wanting to do?
TIA!