Can anyone help me to create a simle "one field" form to submit keywords to the following table? It's a simple table, just has an ID, Keyword and Date. Sorry I do not know anything about mySQL or how to submit info to them! ANy help would be greatly appreciated. Please.
DROP TABLE IF EXISTS dir_keywords;
CREATE TABLE dir_keywords (
ID bigint(21) NOT NULL auto_increment,
Keyword varchar(255) NOT NULL default '',
Date date NOT NULL default '0000-00-00',
PRIMARY KEY (ID)
) TYPE=MyISAM AUTO_INCREMENT=5 ;
Thank you!