$categoria = ""; $vista = ""; $titulo_pagina = "Productos"; if (isset($_GET['pr'])) { $pr = desencripta($_GET['pr']); if ($pr > 0) { $respuesta = traer_titulo($pr, "producto"); $mensaje = $respuesta['mensaje']; $vista = new Vista_producto(); $cuerpo .= $vista->traer_vista_grande($pr); } else { $cuerpo .= "No existe el producto"; } } elseif (isset($_GET['ct'])) { $ct = desencripta($_GET['ct']); if ($ct > 0) { $respuesta = traer_titulo($ct, "categoria"); $titulo_pagina = $respuesta['mensaje']; $vista = new Vista_producto($ct); $cuerpo .= "<div class=c_productos>" . $vista->traer_vista_miniatura() . "</div>"; } else { $cuerpo .= "No existe la categoria"; } } else { $cuerpo .= "Error en productos"; } encabezado($titulo_pagina, ""); echo $cuerpo; pie(); ?> <link rel="stylesheet" type="text/css" href="http://gtcompra.com/modulos/producto/vista/estilo_producto.css">
<?php require_once "{$_SERVER['DOCUMENT_ROOT']}/modulos/negocio/vista/Vista.php"; $cuerpo = ""; $categoria = ""; if (isset($_GET['ct']) && desencripta($_GET['ct']) > 0) { $categoria = desencripta($_GET['ct']); $titulo_categoria = traer_titulo($categoria, "categoria"); if ($titulo_categoria['codigo'] == 1) { $titulo_categoria = $titulo_categoria['mensaje']; } else { $cuerpo .= $titulo_categoria['mensaje']; } } $vista = new Vista_producto($categoria); if (isset($_GET['pr'])) { if (desencripta($_GET['pr']) > 0) { $cuerpo .= $vista->traer_vista_grande(desencripta($_GET['pr'])); } else { $cuerpo .= "No existe el negocio"; } } else { $cuerpo .= "<div class=c_productos>" . $vista->traer_vista_miniatura() . "</div>"; } encabezado($titulo_categoria, ""); echo $cuerpo; pie(); ?> <link rel="stylesheet" type="text/css" href="http://gtcompra.com/modulos/negocio/vista/estilo_producto.css">
<?php require_once "Vista.php"; encabezado("", ""); $vista = new Vista_producto(); if (isset($_GET['pr'])) { if (regresar_numero($_GET['pr']) > 0) { echo $vista->traer_vista_grande(regresar_numero($_GET['pr'])); } else { echo "No existe el producto"; } } else { echo "<div class=c_productos>" . $vista->traer_vista_miniatura() . "</div>"; } pie(); ?> <link rel="stylesheet" type="text/css" href="estilo_producto.css">