
test ettiğimde localhost/proje/img/resim adı.jpg şeklinde gelmiyor


8
●188
<?php
$cek = mysqli_query($conn,"SELECT * FROM resimler WHERE resim_id ORDER by rand() limit 10"); //rastgele resimler gelir
while($row = mysqli_fetch_assoc($cek))
{
$listele = "<li><a title=\"".$row['resim_isim']."\"><img async width=\"300\" height=\"170\" src=\"/proje/img/".$row['resim_url']."\" alt=\"kemal\"></a></li>";
echo $listele;
}
?>