Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End (BASIC) Problem following tutorial regarding PHP Post management system Reply To: (BASIC) Problem following tutorial regarding PHP Post management system

#147271
Anonymous
Inactive

CREATE TABLE post (
id int(11) NOT NULL AUTO_INCREMENT,
title varchar(50) NOT NULL,
date varchar(50) NOT NULL,
author varchar(50) NOT NULL,
content longtext NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1