Tengo este código:
Código PHP:
$consulta = mysql_query("SELECT Img1, Id FROM $tabla");
$row = mysql_fetch_array($consulta);
$i=0;
while ( !empty($row) )
{
$foto[$i] = $row['Img1'];
$i++;
$row = mysql_fetch_array($consulta);
}
for ($i=0;$i<3;$i++){
$get= count($foto)-1;
$aleatoreo= rand(0,$get);
}
Código PHP:
<a href='detalle.php?Id=<?php echo $id; ?>'><img src="/img/<?php echo $foto[$aleatoreo]; ?>" width="550" height="190"></a>
Gracias