arkadaşlar aşağıda vereceğim kodda her resme ayrı link eklemek istiyorum yardım edebilecek var mı ?
$resimler = [
'https://www.aselnakliyat.gen.tr/wp-content/uploads/2019/04/ihlas.png',
'https://www.aselnakliyat.gen.tr/wp-content/uploads/2019/04/asel.png',
'https://www.aselnakliyat.gen.tr/wp-content/uploads/2019/04/anadolu.png',
];
shuffle($resimler);
foreach ($resimler as $resim){
echo '<img src="'.$resim.'"width="650" height="160">';
}