Código PHP:
Ver original
<style type="text/css"> img{border:none;} .galeria{width:565px;padding:10px 8px 10px 10px; margin: 0 auto;border:1px solid #eee; clear:both;text-align:center;overflow:hidden; background:#F9F9F9;} .celda{display:block;width:170px;height:170px; padding:7px 4px 4px;float:left;margin:3px; background:#E6E6E6;border:1px solid #CFCFCF;} .h img{padding-top:20px;} .galeria p { font-family: Verdana; color: #999; } .galeria p:hover { color: #FF5907; cursor: default; } .cat{ padding: 0px; color: #999; font-family: Verdana; line-height:0px; margin-left: 20px; } .cat:hover{ color: #FF5907; } </style> <script> function mostrardiv(id) { div = document.getElementById(id); div.style.display =''; } function cerrar() { div = document.getElementById('galeria'); div.style.display='none'; } </script> <?php //----------------------------------------------- Funciones -------------------------------------- function toISO($cadena){ //convierte de UTF-8 a ISO-8859-1 return $cadena; } function toUTF($cadena){ //convierte de ISO-8859-1 a UTF-8 return $cadena; } //----------------------------------------------- Subcategorias -------------------------------------- echo "<h3>Subcategorías</h3>"; @$titulo = $_GET['titulo']; $categorias = mysql_query("SELECT distinct subcategoria FROM productos WHERE nombre = '$titulo'", $conn); <a style='text-decoration:none;' href='javascript:mostrardiv("galeria");'><p class='cat'><?php echo toISO($res['subcategoria']);?></p></a> <?php }?> <br> <div class="galeria" id="galeria" style="display:none;"> <?php //----------------------------------------------- Galeria de imagenes -------------------------------------- if(!$result) { echo "<div class='celda h'>"; echo "<img src='http://www.proveedoresdehoteleria.com/principales_proveedores/wp-content/themes/intoZine/subcategorias/img_prov/pic_x_producto_SM.jpg' width='100px' height='100px'><br>"; echo "<p>Sin Productos No Incluidos </p>"; echo "</div>"; }else{ { ?> <div class="celda h"> <img src="http://www.proveedoresdehoteleria.com/principales_proveedores/wp-content/themes/intoZine/subcategorias/<?php echo $rec['imagen']; ?>" width="100px" height="100px"> <?php //$nombre=htmlentities($rec['nombre_prod']); //$nombre = utf8_decode($rec['nombre_prod']); //$nombre=$rec['nombre_prod']; //echo "<p>".$nombre."</p><br>"; echo toISO("<p>".$rec['nombre_prod']."</p><br>"); ?> </div> <?php }// se cierra while }// se cierra else ?> </div> <br> <a style="cursor:pointer; text-decoration:none;" onclick="javascript:history.back(-1) "> << Regresar </a>