Ver Mensaje Individual
  #4 (permalink)  
Antiguo 28/04/2007, 11:45
Avatar de gerson
gerson
 
Fecha de Ingreso: febrero-2005
Ubicación: Lima
Mensajes: 481
Antigüedad: 19 años, 2 meses
Puntos: 4
Re: Ver imagenes con switch

Haber si esto te resulta:
Código PHP:
<?php
$val 
substr($row["foto_producto"], -13);
switch (
$val) {
case 
"jpg":
echo 
'<img src="thumbjpg.php?ruta=fotos_productos/$row['foto_producto']&ancho=200&alto=250 border=1">';
break;
case 
"gif":
echo 
'<img src="thumbgif.php?ruta=fotos_productos/$row['foto_producto']&ancho=200&alto=250 border=1';
break;
}
?>
__________________