PHP Blog: Database Information


/ Published in: MySQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. CREATE TABLE IF NOT EXISTS `blog` (
  2. `blogid` int(20) NOT NULL auto_increment,
  3. `message` text NOT NULL,
  4. `date` varchar(255) NOT NULL,
  5. PRIMARY KEY (`blogid`)
  6. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

Report this snippet


Comments


You need to login to view comments.