PHP expert |
|
$foto = mysql_query("SELECT fotosid,fotos FROM mijntabel ORDER BY fotosid DESC LIMIT 0,10") or die(mysql_error());
while ($arre = mysql_fetch_array($foto)) {
$array[] = $arre['fotosid']; // of fotos, weet het niet zeker
}
$rand = rand(1,10);
echo $array[$rand];
// en je hebt een random 'link'
$array[] = $arre['fotosid']; // of fotos, weet het niet zeker } // en je hebt een random 'link'
|