I\'m trying to run the following PHP script to do a simple database query:
$db_host = \"localhost\"; $db_name = \"showfinder\"; $username = \"user\"; $passwo
I had a similar problem on OSX but tried to play around with double and single quotes. For your case, you could try something like this
$query = 'SELECT * FROM "sf_bands"'; // NOTE: double quotes on "sf_Bands"