Estoy desarrollando un foro en el cual tengo una consulta.
Tengo una tabla topics donde estan los datos de los temas con el id,titulo,el usuario que lo creo,fecha.
Esta es la tabla topics:
Código PHP:
CREATE TABLE IF NOT EXISTS `topics` (
`topic_id` int(8) NOT NULL auto_increment,
`topic_subject` varchar(255) NOT NULL,
`topic_date` DATETIME,
`topic_cat` int(8) NOT NULL,
`topic_by` int(8) NOT NULL,
PRIMARY KEY (`topic_id`),
KEY `topic_cat` (`topic_cat`),
KEY `topic_by` (`topic_by`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
Código PHP:
CREATE TABLE IF NOT EXISTS `posts` (
`post_id` int(8) NOT NULL auto_increment,
`post_content` text NOT NULL,
`post_date` datetime NOT NULL,
`post_topic` int(8) NOT NULL,
`post_by` int(8) NOT NULL,
PRIMARY KEY (`post_id`),
KEY `post_topic` (`post_topic`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
Quien pueda responder se los agradezco!
Saludos!