CREATE TABLE tutorial002_news (
id int(11) NOT NULL auto_increment,
title varchar(255) NOT NULL default '',
body text NOT NULL,
posted int(11) NOT NULL default '0',
PRIMARY KEY (id)
) TYPE=MyISAM;
INSERT INTO tutorial002_news VALUES (1,'New Flash Article Posted!!','Today a new Flash article was posted in our tutorial section. We hope you like it and will come back for more at www.primevector.nl',1127236660);
INSERT INTO tutorial002_news VALUES (2,'Awesome affiliate link added!','Checkout this great affiliate link where you can earn $5.00 dollar per new user you add! ',1127954934);
INSERT INTO tutorial002_news VALUES (3,'Another tutorial added!','A new tutorial was added about integrating Flash, php and MySql.',1129070416);