[Solved] Syntacts error in mysql query
The error you are receiving as you’ve shown it is because this line is incorrect: SELECT * FROM `connections` WHERE 1″ First because it’s ending in an unnecessary double quotation mark. MySQL does not use double quotes but single quotes, and even still the other single quote is not there to match it. The single … Read more