if ($tipo == 1){
?>
}else{
?>
}
?>
if ($tipo == 3){
?>
}else{
?>
}
?>
if ($tipo == 5){
?>
}else{
?>
}
?>
if ($tipo == 6){
?>
}else{
?>
}
?>
if ($tipo == 7){
?>
}else{
?>
}
?>
if ($tipo == 8){
?>
}else{
?>
}
?>
|
|
|
|
|
switch($tipo){
case 1:$titulo="Galería oficial";break;
case 2:$titulo="Galería oficial 33 Edición";break;
case 3:$titulo="Colombinas 2008";break;
case 5:$titulo="El lince perdido";break;
case 6:$titulo="La Banda en la isla de la magia";break;
case 7:$titulo="Cóctel patrocinadores";break;
case 8:$titulo="Otras Miradas";break;
}
echo "$titulo";
?>
|
|
|
AbreConexion();
$sql = "SELECT * FROM GALERIA WHERE tipo = $tipo ORDER BY idimagen DESC";
$contenedor = mysql_query($sql,$conexion) or die(mysql_error());
$numimagenes = 0;
$numcol = 0;
while($Datos = mysql_fetch_array($contenedor)){
?>
|
$numimagenes = $numimagenes + 1;
$numcol = $numcol + 1;
if ($numcol == 3){
$numcol = 0;
echo " | | ";
}
?>
}
?>
|
if ($numimagenes == 0){
?>
|
|
}
?>
|
|