Ver Mensaje Individual
  #10 (permalink)  
Antiguo 10/09/2004, 09:52
Avatar de Reynier
Reynier
 
Fecha de Ingreso: noviembre-2002
Ubicación: Por ahí en algún sitio
Mensajes: 1.844
Antigüedad: 21 años, 5 meses
Puntos: 1
sigo en las mismas

Mira he hecho lo que me dijiste y no me crea nada. Cuando le das click derecho sobre el famoso cuadrado con la "X" me da esto:
o sea la ruta. Entonces el código del archivo thumbnails.php es el siguiente:
Código PHP:
<?
  $image 
imagecreatefromjpeg("images/tapices/".$_GET['imagen']."");
  
$img_w imagesx($image);
  
$img_h imagesy($image);
  
$new_img_w 168;
  
$new_img_h 126;
  
$new_img_source imagecreate($new_img_w,$new_img_h);
  
imagecopyresized($new_img_source$image0000$new_img_w$new_img_h,$img_w$img_h);
  
header("Content-type: image/jpeg");
  
imagejpeg($new_img_source,"");
?>
y donde cojo la imagen es esto:
Código PHP:
echo "<td><img src='thumbnails.php?imagen=".$row['imagen']."' border='0' class='cursor''></td>"
que hago mal ahora?

Salu2
__________________
Ing. Reynier Pérez Mira