I still got the earlier SQL error:
WordPress database error: [You have an error in your SQL syntax near '( aid int(10) unsigned NOT NULL auto_increment, qid int(10) NOT NULL default '0'' at line 1]
CREATE TABLE ( aid int(10) unsigned NOT NULL auto_increment, qid int(10) NOT NULL default '0', answers varchar(200) NOT NULL default '', votes int(10) NOT NULL default '0', PRIMARY KEY (aid))
WordPress database error: [You have an error in your SQL syntax near '( id int(10) unsigned NOT NULL auto_increment, question varchar(200) NOT NULL de' at line 1]
CREATE TABLE ( id int(10) unsigned NOT NULL auto_increment, question varchar(200) NOT NULL default '', timestamp varchar(20) NOT NULL default '', total_votes tinyint(4) NOT NULL default '0', PRIMARY KEY (id))
WordPress database error: [You have an error in your SQL syntax near 'VALUES (1, 'How Is My Site?', '1075479885', 0)' at line 1]
INSERT INTO VALUES (1, 'How Is My Site?', '1075479885', 0);
WordPress database error: [You have an error in your SQL syntax near 'VALUES (1, 1, 'Good', 0)' at line 1]
INSERT INTO VALUES (1, 1, 'Good', 0);
WordPress database error: [You have an error in your SQL syntax near 'VALUES (2, 1, 'Excellent', 0)' at line 1]
INSERT INTO VALUES (2, 1, 'Excellent', 0);
WordPress database error: [You have an error in your SQL syntax near 'VALUES (3, 1, 'Bad', 0)' at line 1]
INSERT INTO VALUES (3, 1, 'Bad', 0);
WordPress database error: [You have an error in your SQL syntax near 'VALUES (4, 1, 'Can Be Improved', 0)' at line 1]
INSERT INTO VALUES (4, 1, 'Can Be Improved', 0);
WordPress database error: [You have an error in your SQL syntax near 'VALUES (5, 1, 'No Comments', 0)' at line 1]
INSERT INTO VALUES (5, 1, 'No Comments', 0);
Is ther somebody out there who can tell me how to get a thing working?
Thanks