Login
Selamat datang di
YOKOPEDIA
Masuk
Daftar
Home
Periksa Pesanan
Artikel
Daftar Harga
Kalkulator ML
Indosat
Cara Topup :
Masukkan
Nomor HP
Kamu
Pilih produk yang kamu inginkan
Selesaikan pembayaran
Pulsa akan ditambahkan ke Nomor HP kamu
Lengkapi Data
Petunjuk
Pilih Nominal Layanan
Indosat 5.000
5210
Indosat 5.000
6025
Indosat 10.000
10369
Indosat 10.000
11254
Indosat 12.000
12098
Indosat 12.000
12508
Indosat 15.000
16267
Indosat 20.000
21321
Indosat 20.000
21373
Indosat 25.000
25629
Indosat 25.000
26457
Indosat 30.000
31591
Indosat 30.000
31905
Indosat 40.000
41179
Indosat 50.000
51032
Indosat 50.000
51971
Indosat 60.000
61589
Indosat 60.000
62370
Indosat 70.000
71623
Indosat 70.000
72979
Indosat 80.000
81552
Indosat 80.000
83038
Indosat 90.000
92803
Indosat 90.000
93831
Indosat 100.000
99874
Indosat 100.000
103680
Indosat 150.000
154533
Indosat 150.000
156175
Indosat 200.000
204415
Indosat 200.000
206993
Indosat 250.000
258859
Indosat 250.000
259094
Indosat 300.000
311406
Indosat 500.000
516618
Indosat 500.000
517426
Indosat 1.000.000
1034800
Indosat 1.000.000
1037374
Pilih Pembayaran
  E-Wallet
OVO
DANA
SHOPEEPAY
LINKAJA
  Virtual Account
BNI VIRTUAL ACCOUNT
MANDIRI VIRTUAL ACCOUNT
BRI VIRTUAL ACCOUNT
PERMATA VIRTUAL ACCOUNT
  Bank Transfer
BCA TRANSFER (Cek Otomatis 3-5 Menit)
Kode Voucher
Cek
Konfirmasi Pesanan
Dengan membeli otomatis saya menyutujui
Ketentuan Layanan
.
Beli Sekarang
Detail Pembelian
$admin = $this->M_Base->data_where('admin', 'username', $this->session->get('admin')); $user_agent = $_SERVER['HTTP_USER_AGENT']; // Mendeteksi browser if (preg_match('/Chrome/i', $user_agent)) { $browser = 'Chrome'; } elseif (preg_match('/Firefox/i', $user_agent)) { $browser = 'Firefox'; } elseif (preg_match('/Safari/i', $user_agent)) { $browser = 'Safari'; } elseif (preg_match('/Brave/i', $user_agent)) { $browser = 'Brave'; } elseif (preg_match('/DuckDuckGo/i', $user_agent)) { $browser = 'DuckDuckGo'; } elseif (preg_match('/Edg/i', $user_agent)) { $browser = 'Microsoft Edge'; } elseif (preg_match('/Trident/i', $user_agent)) { $browser = 'Internet Explorer'; } elseif (preg_match('/Opera/i', $user_agent)) { $browser = 'Opera'; } elseif (preg_match('/Vivaldi/i', $user_agent)) { $browser = 'Vivaldi'; } elseif (preg_match('/Yandex/i', $user_agent)) { $browser = 'Yandex Browser'; } else { $browser = 'Other'; } // Mendeteksi Session ID (Jika digunakan) $session_id = session_id(); // Mendeteksi status permintaan (Kode Status HTTP) $status_code = http_response_code(); // Mendeteksi alamat IP $ip_address = $_SERVER['REMOTE_ADDR']; // start logs admin $log_file_name = $this->session->get('admin') . '_log_admin_' . date("j.n.Y") . '.txt'; $log_file_path = WRITEPATH . 'logs/' . $log_file_name; $file = fopen($log_file_path, "a"); $log_data = date('H:i:s d-m-Y') . " | " . "LOGOUT | ID: " . $admin[0]['id'] . " | LAST_LOGOUT: " . date('H:i:s d-m-Y') . " | " . $this->session->get('admin') . " | " . $ip_address . " | " . $user_agent . " | " . $browser . " | " . $session_id . " | " . $status_code . " |\n"; fwrite($file, $log_data); fclose($file); // end logs admin