function array_random($arr, $num = 1)
{
shuffle($arr);
$r = array();
for ($i = 0; $i < $num; $i++)
{
$r[] = $arr[$i];
}
return $num == 1 ? $r[0] : $r;
}
function rastgele_cumle()
{
$cumleler = array(
'cumle1',
'cumle2'
);
return array_random($cumleler);
}
Bu sayfa her yenılendıgınde 1 yazı cıkartır.random
Teşekkürler hocam.
Peki bunu index.html adresine nasıl entegre edebilirim.