bu komut ile çekiyorum mysql'den:
$mysqli = new mysqli('localhost', 'root', '', 'icerik');
$sql = 'SELECT yazi, resim FROM yazilar';
$sonuc = $mysqli->query($sql); // sonuçları çektik
?>
Yazılar
while ($listele = $sonuc->fetch_assoc()) {
echo "$listele[yazi]
";
echo "
";
}
?>