AJAX

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?

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!!!
 
Thanks for your reply! I have that working now for the add showTagger() and addTag() but for the removeTag(id) i dont know how I would go about registering an event across all the elements as they are added to and removed etc.. is there a way to say any thing with this class will send its id="" to the function removeTag(id) ????
 
Back
Top Bottom