Soldato
- Joined
- 18 Apr 2004
- Posts
- 2,613
- Location
- London
I am working on a php tagging thing and I wanted to get feedback on how well or not well written it is. Any obvious problems with the code?
Live site
Code to download
Any and all feedback would be appreciated!!!
Code:
CREATE TABLE `ajax` (
`id` int(11) NOT NULL auto_increment,
`time` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
`message` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
Live site
Code to download
Any and all feedback would be appreciated!!!