I'm working on a CMS and it's almost finished now, but I encountered a problem.
Althroughout the code I've used query's like:
Code:
SELECT name FROM users WHERE name='test';
But now, when I copied the app to the server online, an external host, it gives me errors. Now I have to use:
Code:
SELECT 'name' FROM users WHERE name='test';
Is there a way to tell MySQL to act normal, like my localhost does; and to stop complaining about the absence of quotes?