El código es el siguiente:
Código PHP:
<?php
if(isset($_GET['source']))
{
highlight_file('./randimage.php');
die();
}
$imagesfile='images.txt'; // Ruta del txt con las urls de las imagenes.
$fp=@file_get_contents($imagesfile);
if(!$fp)
{
echo '<p>Error al intentar abrir <b>'.$imagesfile.'</b></p>';
}
else
{
$images=explode(chr(10),$fp);
$amount=count($images);
$x=rand(0,$amount-1);
$image=@imagecreatefrompng($images[$x]);
header('Content-Type: image/png');
imagejpeg($image);
imagedestroy($image);
}
?>
Código PHP:
$image=@imagecreatefrompng($images[$x]);
Código PHP:
$image=@imagecreatefrompng($images[Nº]);
GRACIAS.