<?
/*
randomresim();
*/
$resimler = array(
"resim1.uzantı",
"resim2.uzantı",
"resim3.uzantı"
);
function randomresim() {
global $resimler;
$toplamresim = count($resimler);
$toplamresim = $toplamresim-1;
$x = rand(0,$toplamresim);
echo "$resimler[$x]";
}
randomresim();
?>