Código PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="LTR">
<head>
<title>Mostrando los datos</title>
</head>
<body>
<?php
$bdconex = @mysql_connect("localhost", "usuario", "contraseña");
if (!$bdconex) {
echo( "<h1>La base de datos no disponible</h1> " .
exit();
}
// seleccionamos la base de datos
if (! @mysql_select_db("nombredelabasededatos", $bdconex)){
echo "<h2 align='center'>ERROR3: base de datos no disponible</h2>";
exit();
}
?>
<h1>Las imagenes</h1>
<?php
// Selecciono la base de datos
$resultado = @mysql_query("SELECT * FROM tabla ORDER BY tabla.comulna DESC LIMIT 0, 30");
if (!$resultado) {
echo ("<p> Me temo que te has colado en la query:" . mysql_error() . "</p>");
exit();
}
include('class.smushit.php');
while ($fila = mysql_fetch_array($resultado)) {
echo ("<p><strong>Imagen: </STRONG> http://miweb.com/img/" . $fila['item_thumbnail'] . "<br />");
$img = new SmushIt('http://miweb.com/img/'.$fila['columnadelaimagen'] );
echo '<strong>filename:</strong> '.$img->filename .'<br />';
echo '<strong>url:</strong> '.$img->url .'<br />';
echo '<strong>url resultado:</strong> '. $img->compressedUrl .'<br />';
echo '<strong>Porcentaje salvado:</strong> '. $img->savings;
}
?>
</body>
<html>
y ahora las preguntas $img->compressedUrl me devuelve la ruta de la imagen pasada ya por smushit
lo qué necesitaria seria descargar y renombrar esta imagen en mi servidor
mis conocimientos son muy nulos alguna idea de como podria hacerlo ?