menu search
brightness_auto
more_vert
Fransa'da yaşayan Türkler oy kullanmaya Osmanlı kıyafetleri ile gitti

thumb_up_off_alt 0 beğenilme thumb_down_off_alt 0 beğenilmeme

1 cevap

more_vert
Mal
thumb_up_off_alt 0 beğenilme thumb_down_off_alt 0 beğenilmeme
more_vert
<?php
include 'db.php';

$unique_id = $_GET['id'];

$sql = "SELECT title, content, created_at FROM posts WHERE unique_id='$unique_id'";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
    while($row = $result->fetch_assoc()) {
        echo "<h1>" . $row["title"]. "</h1>";
        echo "<p>" . $row["content"]. "</p>";
        echo "<small>Paylaşıldı: " . $row["created_at"]. "</small>";
    }
} else {
    echo "Metin bulunamadı.";
}

$conn->close();
?>

İlgili Başlıklar

thumb_up_off_alt 0 beğenilme thumb_down_off_alt 0 beğenilmeme
1 cevap
thumb_up_off_alt 0 beğenilme thumb_down_off_alt 0 beğenilmeme
1 cevap
thumb_up_off_alt 1 beğenilme thumb_down_off_alt 0 beğenilmeme
16 cevap
thumb_up_off_alt 0 beğenilme thumb_down_off_alt 1 beğenilmeme
1 cevap
thumb_up_off_alt 0 beğenilme thumb_down_off_alt 0 beğenilmeme
0 cevap
...