Berita Data:"; if (!$response) { echo "

Gagal ambil data dari API.

"; exit; } // tampilkan info umum echo "
";
echo "Success: " . ($response['status'] == 1 ? 'YES' : 'NO') . "\n";
echo "HTTP Code: 200\n";
echo "Data count: " . (is_array($response['data'] ?? null) ? count($response['data']) : 0) . "\n";
echo "
"; // --- tampilkan daftar berita --- if (!empty($response['data']) && is_array($response['data'])) { echo "

Daftar Berita:

"; foreach ($response['data'] as $item) { $judul = htmlspecialchars($item['judul'] ?? '-'); $tanggal = htmlspecialchars($item['tanggal'] ?? '-'); $isi = nl2br(htmlspecialchars(trim($item['isi'] ?? ''))); $photoUrl = uploads_berita_url((string) ($item['photo'] ?? '')); echo "
"; echo "

📅 $tanggal — $judul

"; if ($photoUrl !== '') { echo "$judul"; } echo "

$isi

"; echo "
"; } } else { echo "

Tidak ada berita ditemukan.

"; }