im createing a shoutbox and in a tutorial i don't understand what it means by this
Step 1 : Create database with information :
PHP Code:
Code:
CREATE TABLE `tagboard` (
`id` int(7) NOT NULL auto_increment,
`name` varchar(250) NOT NULL default '',
`comments` text NOT NULL,
`date` timestamp(14) NOT NULL,
PRIMARY KEY (`id`),
) TYPE=MyISAM AUTO_INCREMENT=419 ;
like i would i make a database with this?