$settingsQuery = "SELECT bool FROM settings WHERE title='showAdmin'";
$settings = mysql_query($settingsQuery);
while($settingsRow = mysql_fetch_array($settings))
{
$showAdmin = $settingsRow;
}
It gives me:
mysql_fetch_array(): supplied argument is not a valid MySQL result resource
I don't see...