Im getting the error:
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 '10', '16:39:02', '292.35')' at line 1
this is the query im running in php:
mysql_query("INSERT INTO `copper`
(`month`, `time`, `price`)
VALUES
('$month', '$time', '$price')") or die(mysql_error());
Here is a literal example:
INSERT INTO `table`
(`month`, `time`, `price`)
VALUES
('10', '16:39:02', '292.35')
this is my table setup