Poseo estas dos tablas que van unidas:
Código MySQL :
CREATE TABLE IF NOT EXISTS `categorias` ( `categoria_id` bigint(200) NOT NULL, `categoria_nombre` varchar(200) NOT NULL, `categoria_nombre_en` varchar(200) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; CREATE TABLE IF NOT EXISTS `productos` ( `producto_id` bigint(200) NOT NULL AUTO_INCREMENT, `nombre` varchar(255) DEFAULT NULL, `nombre_en` varchar(200) DEFAULT NULL, `descripcion` text, `descripcion_en` text, `imagen` varchar(200) DEFAULT NULL, `categoria_padre` int(200) NOT NULL, PRIMARY KEY (`producto_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;
Cada producto pertenece a una Categoria padre.
Lo que necesito es que se vea de esta manera:
Código PHP :
<div class="recent-projects"> <h4 class="title">NOMBRE DE CATEGORIA</h4> <div class="projects-carousel touch-carousel"> <!-- ESTO DEBE REPETIRSE DE AQUÍ--> <div class="portfolio-item item"> <div class="portfolio-border"> <div class="portfolio-thumb"> <img alt="" src="IMAGEN DE PRODUCTO" /> </div> <div class="portfolio-details"> <a href="#"> <h4>NOMBRE DE PRODUCTO</h4> </a> </div> </div> </div> <!-- HASTA AQUÍ--> </div> </div>
Por favor no puedo dar con la respuesta!