Looks like MySQL is receiving this query: SELECT * FROM values
but is expecting this query: SELECT * FROM `values`
I'm guess either PHP is stripping the back quotes from the query or MySQL settings are overly strict.
The error message is an SQL syntax error message:
Query failed: SELECT * FROM values : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'values' at line 1 (version: 9.0.6, PHP version: 5.3.18, URL: /)
The...