Los datos de la tabla categoria es sencilla:
Código:
CREATE TABLE tipos (
id mediumint(8) NOT NULL auto_increment,
tipo varchar(50) NOT NULL default '',
posicion mediumint(8) NOT NULL,
foto varchar(40) NOT NULL default 'n/a',
UNIQUE KEY id (id),
KEY tipo (tipo)
) TYPE=MyISAM;
La de productos aun no esta hecha pero simplemente puede ser así:
Código:
CREATE TABLE productos (
id mediumint(8) NOT NULL auto_increment,
tipo varchar(50) NOT NULL default '',
producto varchar(50) NOT NULL default '',
descripcion text,
UNIQUE KEY id (id),
) TYPE=MyISAM;
Espero que te sirva esto más información la que quieras