generate.php
Código PHP:
<?php
header("Content-type: image/png");
$result = rand(1, 2);
$foto1 = file_get_contents('unafoto.png');
$foto2 = file_get_contents('otrafoto.png');
if ($result = "1") {
echo $foto1;
}
else{
echo $foto2;
}
?>
Photo.html
Código HTML:
<img src="generate.php"/>
Me gustaria saber como crear una imagen dinamica.Graciaas