
05/09/2008, 12:41
|
 | | | Fecha de Ingreso: julio-2008 Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 16 años, 8 meses Puntos: 416 | |
Respuesta: Redimensionar imagen list($width, $height) = getimagesize($img);
$width_n = ($width/2);
$height_n = ($width/2);
<img src="<?php echo $img; ?>" height="<?php echo $height_n; ?>" width="<?php echo $width_n; ?>"></img>
Y revisa que la ruta a la imagen este correcta. |