The following is the dumpfile. Its from a tutorial at devshed. Could you tell me the syntax error so I can fix it?
#
Table structure for table 'url_list'
#
CREATE TABLE url_list (
uid varchar(8) NOT NULL,
title1 varchar(30) NOT NULL,
url1 text NOT NULL,
title2 varchar(30) NOT NULL,
url2 text NOT NULL,
title3 varchar(30) NOT NULL,
url3 text NOT NULL,
PRIMARY KEY (uid)
);
#
Dumping data for table 'url_list'
#
INSERT INTO url_list VALUES( 'john', 'Melonfire', 'http://www.melonfire.com', 'Devshed', 'http://www.devshed.com', 'PHP.Net', 'http://www.php.net');
INSERT INTO url_list VALUES( 'bill', 'Yahoo', 'http://www.yahoo.com', 'Slashdot', 'http://www.slashdot.org', '32Bit.com', 'http://www.32bit.com');