ok now when i input information into the form i get this
The query is:
INSERT into roster ('alias', 'FIRST', 'last', 'position', 'email', 'location', 'weapon', 'map', 'quote', 'sensitivity', 'cssensitivity', 'resolution', 'extramousesettings', 'refreshrate', 'vsync', 'manufacturer', 'os', 'cpu', 'memory', 'harddrive', 'videocard', 'soundcard', 'moniter', 'keyboard', 'mouse', 'mousepad', 'career') values ('g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', '', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g', 'g')
The query could not be executed
Invalid Insert: You have an error in your SQL syntax near ''alias', 'FIRST', 'last', 'position', 'email', 'location', 'weapon', 'map', 'quo' at line 1
Create table roster (id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, alias varchar(50), first varchar(50), last varchar(50), position varchar(50), email varchar(50), location varchar(50), weapon varchar(50), map varchar(50), quote varchar(50), sensitivity varchar(50), cssensitivity varchar(50), resolution varchar(50), extramousesettings varchar(50), refreshrate varchar(50), vsync varchar(50), manufacturer varchar(50), os varchar(50), cpu varchar(50), memory varchar(50), harddrive varchar(50), videocard varchar(50), soundcard varchar(50), moniter varchar(50), keyboard varchar(50), mouse varchar(50), mousepad varchar(50), career TEXT)
i cant seem to find the error =/