I try to explain even more:
Right, i have a site: www.icl-cti.tk and i want to create a
DB, for entering info about baned people on our gameserver, and basically, i need 2 pages. 1 Page will be a Form, where you enter the info of the banned person, and the second where all the info is displayed in a table.
Created this Database:
CREATE TABLE `ofp_bans` (
`id` int(4) NOT NULL auto_increment,
`ofp_id` int(7) NOT NULL default '0',
`ofp_name` varchar(100) NOT NULL default '',
`ban_reason` varchar(200) NOT NULL default '',
`clan` varchar(100) default '',
`comments` text,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
Any Help Appriciated!