Hello
According to some workshop from Lycos Netherlands, I made a small database system. It works perfectly, but i have to log in to my account and go to the MySQL-control center to add data, but it takes ages. How can I make a form which inserts the date I want to add? I've seen a few examples, but I haven't been able to get it to work with my table.
The table has the following features:
id smallint(8) unsigned NOT NULL auto_increment,
stof varchar(128) NOT NULL default '',
grootte varchar(100) NOT NULL default '0',
auteur varchar(100) NOT NULL default '',
link varchar(255) NOT NULL default '',
date date NOT NULL default '2002-01-01',
affichage enum
('WAK','WANW','WBIO','WCKV','WDU','WECO','WENG','WFRA','WGS','WMA','W
NA','WNE','WSK','ODU','OENG','OFRA','AND') NOT NULL default 'WAK',
PRIMARY KEY (id)
I have a seperate connection script which I use to connect to my database.
Can anybody help me with making a working form?