First change
CREATE TABLE waypoints (
id tinyint(10) NOT NULL auto_increment,
type text NOT NULL,
letter text NOT NULL,
name text NOT NULL,
url text NOT NULL,
UNIQUE KEY id (id)
) TYPE=MyISAM;
to
CREATE TABLE waypoints (
id tinyint(10) NOT NULL auto_increment,
type text NOT NULL,
letter text NOT NULL,
name text NOT NULL,
url text NOT NULL,
PRIMARY KEY id (id)
) TYPE=MyISAM;
(Not really essential just better)
Second...
INSERT INTO waypoints
VALUES (
'', 'other', '#', '001_cs_skyx.zip', 'http://homepage.ntlworld.com/wendy.levett/waypoints/other/'
)
to
INSERT INTO waypoints
( type, letter, name, url )
VALUES
( 'other', '#', '001_cs_skyx.zip', 'http://homepage.ntlworld.com/wendy.levett/waypoints/other/' )