PHP Code:
Column count doesn't match value count at row 1
That means the selected feilds in the query don't coun't up to the values. You have 14 feilds to insert into, and there are 15 values there. You either added one to many values into your query, or you missed a feild to insert into.
Here an example query, notice there are 5 feilds to insert into, and the values for all 5 feilds, you can't have 6 feilds and 5 values, or 6 vaules and 5 feilds, it all has to match in the order its being inserted into.
[sql]
$DB_site->query("
INSERT INTO " . TABLE_PREFIX . " TABLE_NAME
(feild_1, feild_2, feild_3, feild_4, feild_5)
VALUES
(value_for_feild_1, value_for_feild_2, value_for_feild_3, value_for_feild_4, value_for_feild_5)
");
[/sql]