I made the changes you suggested and got half way. I have another problem.
SQL: SELECT * FROM verification, location, description ,specials,activities WHERE verification.bar_id = location.bar_id && verification.ver_add_to_public=\'Yes\'&& location.loc_city=\'Medicine Hat\'
To fix the ' problem I used the following 2 commands.
$SQL2 = htmlspecialchars($SQL2, ENT_QUOTES); // to convert single quotes
$SQL2 = urlencode($SQL2);
SQL: SELECT * FROM verification, location, description ,specials,activities WHERE verification.bar_id = location.bar_id && verification.ver_add_to_public='Yes'&& location.loc_city='Medicine Hat'
These are print outs. Well from what I can tell this querry is correct but I believe there are hidden characters for the single quotes because if I take off the 'Yes' and 'Medicine Hat' everything works.