Aparentemente no está tomando las variables que le paso por la url.
Lo más raro es que en local si funciona y los problemas comienzan cuando lo subo al servidor remoto.
Necesito ayuda urgente por favor.
La llamada a la función es la siguietne. Está en el atributo src de la imagen, donde dice redimensionar.php?etc.
Los valores tomados de Mysql aparecen bien.
Código PHP:
echo '<div class="miniatura">'.$row_fotos['nombre_foto'].'
<a href=fotos.php?id_foto='.$row_fotos['id_foto'].'>
<img src="redimensionar.php?medidas=120&mini_foto='.$row_fotos['mini_foto'].'" border="0"></a></div>';
Código PHP:
$anchura=$medidas;
$hmax=$medidas;
if ($foto!=""){$carpeta='fotos/';$mini_foto=$foto;}else{$carpeta='fotos/miniaturas/';}
$nombre=$carpeta.$mini_foto;//
$datos = getimagesize($nombre);
if($datos[2]==1){$img = @imagecreatefromgif($nombre);}
if($datos[2]==2){$img = @imagecreatefromjpeg($nombre);}
if($datos[2]==3){$img = @imagecreatefrompng($nombre);}
$ratio = ($datos[0] / $anchura);
$altura = ($datos[1] / $ratio);
if($altura>$hmax){$anchura2=$hmax*$anchura/$altura;$altura=$hmax;$anchura=$anchura2;}
$thumb = imagecreatetruecolor($anchura,$altura);
imagecopyresampled($thumb, $img, 0, 0, 0, 0, $anchura, $altura, $datos[0], $datos[1]);
if($datos[2]==1){header("Content-type: image/gif"); imagegif($thumb);}
if($datos[2]==2){header("Content-type: image/jpeg");imagejpeg($thumb);}
if($datos[2]==3){header("Content-type: image/png");imagepng($thumb); }
imagedestroy($thumb);