Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

"\102\101\x53\x45\120\101\124\x48") or die("\116\157\x20\x64\151\x72\x65\x63\164\x20\x73\1..

Decoded Output download

<?  "BASEPATH") or die("No direct script access allowed"); class Rekap_baru extends MY_Controller { public function __construct() { parent::__construct(); if (!$this->user->is_admin()) { redirect("user/login"); } } public function index() { $zona_waktu = 3600 * $this->system->set["zona_waktu"]; $date = Date("d-m-Y"); $param["produk"] = 0; $param["pembelian"] = 0; $param["penjualan"] = 0; $param["margin"] = 0; $addsql = ''; $addsql .= " where a.tr_tanggal >= '" . (strtotime($date . " 00:00:00") - $zona_waktu) . "' and a.tr_tanggal <= '" . (strtotime($date . " 23:59:59") - $zona_waktu) . "' "; $param["produk"] = $this->get_data("select distinct b.op_produk 
                                        from transaksi a 
                                        join voucher b on a.vo_id = b.vo_id\xa                                        group by b.op_produk")->num_rows(); $param["pembelian"] = $this->get_data("select sum(a.tr_harga2-a.tr_income) as pembelian 
                                            from transaksi a \xa                                            join voucher b on a.vo_id = b.vo_id and\xa                                            a.tr_status_pembayaran = 'sukses' and a.tr_status = 'sukses' \xa                                            {$addsql}")->row()->pembelian; $param["penjualan"] = $this->get_data("select sum(a.tr_harga2) as penjualan \xa                                            from transaksi a 
                                            join voucher b on a.vo_id = b.vo_id and 
                                            a.tr_status_pembayaran = 'sukses' and a.tr_status = 'sukses' 
                                            {$addsql}")->row()->penjualan; $param["margin"] = $this->get_data("select sum(a.tr_income) as margin 
                                            from transaksi a 
                                            join voucher b on a.vo_id = b.vo_id and \xa                                            a.tr_status_pembayaran = 'sukses' and a.tr_status = 'sukses' \xa                                            {$addsql}")->row()->margin; $this->load->view("admin/rekap_baru/index", $param); } public function detail_produk() { $type = "view"; $addsql = ''; $from_date = ''; $to_date = ''; if ($this->input->get("from_date") && $this->input->get("to_date")) { $zona_waktu = 3600 * $this->system->set["zona_waktu"]; $from_date = $this->input->get("from_date"); $to_date = $this->input->get("to_date"); $addsql .= " and a.tr_tanggal >= '" . (strtotime($from_date . " 00:00:00") - $zona_waktu) . "' "; $addsql .= " and a.tr_tanggal <= '" . (strtotime($to_date . " 23:59:59") - $zona_waktu) . "' "; } if ($this->input->get("type") == "json") { $type = "json"; } $param["from_date"] = $from_date; $param["to_date"] = $to_date; $param["datas"] = $this->get_data("select \xa                                        b.op_produk,\xa                                        sum(a.tr_harga2 - a.tr_income) as pembelian,
                                        sum(a.tr_harga2) as penjualan,\xa                                        sum(a.tr_income) as margin\xa                                        from transaksi a 
                                        join voucher b on a.vo_id = b.vo_id
                                        where a.tr_status_pembayaran = 'sukses' and a.tr_status = 'sukses' \xa                                        {$addsql}
                                        group by b.op_produk\xa                                        order by b.op_produk")->result(); if ($type == "view") { $this->load->view("admin/rekap_baru/detail_produk", $param); } if ($type == "json") { foreach ($param["datas"] as $row) { $alt = $row->op_produk; $row->op_produk = @$this->system->produk->{$alt}->nama; } print_r(json_encode($param["datas"])); } } public function detail_voucher($op_produk) { $type = "view"; $addsql = ''; $from_date = ''; $to_date = ''; if ($this->input->get("from_date") && $this->input->get("to_date")) { $zona_waktu = 3600 * $this->system->set["zona_waktu"]; $from_date = $this->input->get("from_date"); $to_date = $this->input->get("to_date"); $addsql .= " and a.tr_tanggal >= '" . (strtotime($from_date . " 00:00:00") - $zona_waktu) . "' "; $addsql .= " and a.tr_tanggal <= '" . (strtotime($to_date . " 23:59:59") - $zona_waktu) . "' "; } if ($this->input->get("type") == "json") { $type = "json"; } $param["op_produk"] = $op_produk; $param["from_date"] = $from_date; $param["to_date"] = $to_date; $param["datas"] = $this->get_data("select \xa                                        b.op_produk,
                                        c.op_nama,\xa                                        sum(a.tr_harga2 - a.tr_income) as pembelian,
                                        sum(a.tr_harga2) as penjualan,\xa                                        sum(a.tr_income) as margin \xa                                        from transaksi a \xa                                        join voucher b on a.vo_id = b.vo_id
                                        join operator c on a.op_id = c.op_id\xa                                        where a.tr_status_pembayaran = 'sukses' and a.tr_status = 'sukses' and
                                        b.op_produk = '" . $op_produk . "' {$addsql}\xa                                        group by b.op_produk,c.op_nama
                                        order by b.op_produk,c.op_nama ?>

Did this file decode correctly?

Original Code

"\102\101\x53\x45\120\101\124\x48") or die("\116\157\x20\x64\151\x72\x65\x63\164\x20\x73\143\x72\151\x70\x74\x20\141\143\x63\145\x73\163\x20\141\x6c\x6c\x6f\167\x65\144"); class Rekap_baru extends MY_Controller { public function __construct() { parent::__construct(); if (!$this->user->is_admin()) { redirect("\x75\x73\x65\x72\x2f\154\157\x67\151\x6e"); } } public function index() { $zona_waktu = 3600 * $this->system->set["\172\157\156\x61\137\167\141\153\164\x75"]; $date = Date("\144\x2d\155\x2d\x59"); $param["\160\162\x6f\x64\165\x6b"] = 0; $param["\160\x65\155\142\x65\154\151\x61\156"] = 0; $param["\160\x65\156\152\165\x61\154\141\156"] = 0; $param["\x6d\x61\x72\x67\151\x6e"] = 0; $addsql = ''; $addsql .= "\40\x77\x68\x65\162\x65\x20\141\x2e\164\x72\x5f\x74\x61\156\x67\x67\141\x6c\x20\76\x3d\40\47" . (strtotime($date . "\40\x30\x30\72\60\x30\x3a\60\x30") - $zona_waktu) . "\47\x20\141\156\144\x20\141\x2e\x74\x72\137\x74\x61\156\147\147\x61\x6c\40\74\x3d\x20\x27" . (strtotime($date . "\x20\x32\63\x3a\65\x39\x3a\x35\x39") - $zona_waktu) . "\x27\x20"; $param["\160\x72\157\144\165\153"] = $this->get_data("\x73\145\x6c\x65\143\x74\x20\x64\151\163\x74\151\156\143\164\40\142\56\157\160\137\160\162\157\144\165\153\x20\12\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\146\162\157\155\40\x74\x72\x61\156\x73\141\153\x73\151\x20\x61\40\12\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\152\157\x69\156\40\166\157\x75\x63\x68\x65\x72\40\x62\40\157\156\40\x61\x2e\x76\x6f\x5f\151\144\40\x3d\x20\x62\56\166\157\137\x69\144\xa\40\40\x20\40\40\40\40\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x67\x72\157\x75\x70\x20\x62\171\40\142\56\157\160\137\x70\x72\x6f\x64\x75\x6b")->num_rows(); $param["\160\x65\155\142\145\154\151\x61\156"] = $this->get_data("\x73\x65\x6c\x65\143\x74\x20\163\165\x6d\50\x61\56\164\x72\x5f\x68\x61\x72\x67\141\62\55\141\56\164\x72\x5f\151\156\x63\157\x6d\145\51\40\141\163\40\x70\x65\x6d\142\x65\x6c\x69\141\156\40\12\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\146\162\157\x6d\40\164\x72\141\156\163\x61\x6b\x73\x69\x20\141\40\xa\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x6a\157\151\x6e\x20\x76\157\165\x63\x68\x65\162\x20\142\40\x6f\156\40\141\56\x76\157\137\151\144\40\x3d\x20\x62\x2e\x76\157\137\151\x64\x20\x61\156\x64\xa\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\x61\x2e\164\162\137\x73\164\141\164\165\163\x5f\160\x65\x6d\142\141\171\x61\x72\141\156\40\x3d\x20\47\163\x75\153\x73\145\163\47\x20\141\156\x64\40\x61\56\164\x72\x5f\x73\x74\141\164\x75\163\x20\75\40\x27\163\165\153\x73\x65\163\47\x20\xa\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20{$addsql}")->row()->pembelian; $param["\160\x65\156\x6a\x75\x61\154\x61\x6e"] = $this->get_data("\163\145\x6c\145\143\x74\x20\163\x75\155\x28\141\x2e\164\x72\137\x68\141\162\147\x61\x32\x29\40\141\x73\40\160\x65\x6e\x6a\x75\141\154\x61\x6e\x20\xa\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x66\x72\x6f\x6d\x20\x74\x72\141\156\163\141\153\163\151\40\x61\x20\12\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\152\157\x69\156\x20\x76\x6f\x75\x63\150\x65\162\x20\x62\40\x6f\156\x20\141\x2e\x76\157\x5f\151\x64\x20\x3d\x20\142\56\166\x6f\137\151\144\40\x61\156\144\40\12\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x61\56\164\162\137\163\x74\141\x74\x75\x73\137\x70\145\x6d\142\x61\x79\x61\162\x61\x6e\40\x3d\40\x27\163\165\x6b\x73\145\163\x27\x20\141\156\x64\40\141\56\x74\x72\x5f\x73\164\x61\164\165\x73\x20\75\40\47\x73\165\x6b\x73\145\163\47\40\12\x20\x20\40\40\40\40\40\x20\40\x20\40\40\40\x20\x20\40\40\40\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20{$addsql}")->row()->penjualan; $param["\155\x61\x72\x67\x69\156"] = $this->get_data("\x73\x65\x6c\145\x63\164\40\163\165\x6d\50\141\x2e\x74\x72\137\x69\x6e\143\x6f\155\145\x29\x20\x61\x73\x20\x6d\141\x72\x67\x69\x6e\x20\12\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\146\x72\157\x6d\x20\164\x72\141\x6e\163\x61\153\x73\x69\40\141\40\12\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\152\157\151\x6e\x20\x76\x6f\165\143\150\x65\162\40\142\40\x6f\x6e\x20\141\56\166\x6f\137\151\144\40\75\40\142\56\x76\x6f\137\151\x64\x20\141\156\x64\x20\xa\40\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\141\56\164\162\x5f\163\x74\x61\164\165\x73\137\160\145\155\142\141\x79\141\162\141\156\x20\75\x20\x27\x73\x75\153\163\145\x73\47\x20\x61\x6e\144\40\x61\56\x74\x72\137\x73\x74\141\x74\x75\x73\x20\75\x20\x27\x73\x75\153\163\145\163\x27\40\xa\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\40{$addsql}")->row()->margin; $this->load->view("\141\x64\x6d\x69\x6e\x2f\x72\x65\153\141\160\137\142\x61\x72\165\57\x69\x6e\144\145\170", $param); } public function detail_produk() { $type = "\x76\x69\145\x77"; $addsql = ''; $from_date = ''; $to_date = ''; if ($this->input->get("\x66\x72\157\155\137\144\141\164\x65") && $this->input->get("\x74\x6f\x5f\x64\141\164\x65")) { $zona_waktu = 3600 * $this->system->set["\x7a\x6f\156\141\x5f\x77\141\x6b\164\x75"]; $from_date = $this->input->get("\x66\162\157\155\x5f\144\x61\x74\x65"); $to_date = $this->input->get("\x74\157\137\144\141\x74\145"); $addsql .= "\x20\x61\x6e\144\40\141\x2e\x74\x72\137\164\x61\x6e\147\147\x61\154\40\x3e\75\40\47" . (strtotime($from_date . "\40\60\60\x3a\60\x30\x3a\60\x30") - $zona_waktu) . "\47\40"; $addsql .= "\40\141\156\144\40\x61\x2e\x74\x72\137\164\141\156\147\147\141\x6c\x20\x3c\75\40\47" . (strtotime($to_date . "\40\x32\x33\x3a\x35\x39\x3a\65\71") - $zona_waktu) . "\x27\x20"; } if ($this->input->get("\164\171\160\145") == "\152\163\x6f\x6e") { $type = "\152\163\x6f\156"; } $param["\x66\x72\157\x6d\137\x64\141\x74\x65"] = $from_date; $param["\x74\x6f\137\x64\141\164\x65"] = $to_date; $param["\x64\x61\164\x61\163"] = $this->get_data("\x73\145\x6c\145\143\x74\x20\xa\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x62\x2e\157\160\x5f\x70\162\x6f\144\165\153\x2c\xa\40\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\163\165\x6d\x28\141\56\164\x72\x5f\150\x61\x72\147\141\62\40\55\40\141\56\164\162\x5f\151\x6e\x63\x6f\x6d\x65\x29\40\141\x73\x20\x70\x65\x6d\x62\x65\154\x69\141\156\54\12\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\x73\165\155\x28\141\x2e\x74\x72\x5f\150\x61\x72\147\x61\x32\51\40\x61\163\40\x70\145\x6e\152\165\141\154\x61\x6e\54\xa\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\x73\165\155\x28\x61\56\164\162\x5f\x69\156\x63\x6f\x6d\145\51\x20\141\x73\40\155\141\162\147\x69\156\xa\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\40\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\146\x72\157\155\x20\x74\x72\x61\156\163\141\153\x73\151\40\x61\40\12\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\152\x6f\151\x6e\x20\166\157\165\143\x68\x65\x72\x20\x62\40\x6f\156\x20\141\56\x76\157\137\x69\144\x20\x3d\40\142\56\166\x6f\137\x69\x64\12\x20\40\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\167\150\145\x72\x65\x20\141\56\164\162\137\x73\x74\141\164\165\163\137\160\x65\x6d\142\141\x79\141\162\x61\x6e\x20\75\x20\47\163\x75\153\163\145\163\x27\x20\141\x6e\x64\40\x61\x2e\x74\162\x5f\163\x74\141\x74\165\x73\40\75\40\x27\163\165\x6b\x73\145\163\x27\40\xa\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\40\x20\40\40\40\40\40\40\x20{$addsql}\12\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\40\x67\162\x6f\x75\x70\x20\142\171\x20\142\56\x6f\160\x5f\x70\x72\x6f\x64\165\x6b\xa\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x6f\162\144\145\x72\40\142\x79\40\x62\56\x6f\160\x5f\x70\x72\x6f\144\165\153")->result(); if ($type == "\x76\x69\145\x77") { $this->load->view("\141\x64\155\x69\156\x2f\162\x65\x6b\141\160\137\x62\141\162\165\57\x64\x65\164\x61\151\154\x5f\160\x72\157\x64\x75\x6b", $param); } if ($type == "\x6a\x73\x6f\156") { foreach ($param["\x64\141\x74\141\x73"] as $row) { $alt = $row->op_produk; $row->op_produk = @$this->system->produk->{$alt}->nama; } print_r(json_encode($param["\144\x61\x74\141\x73"])); } } public function detail_voucher($op_produk) { $type = "\x76\151\145\x77"; $addsql = ''; $from_date = ''; $to_date = ''; if ($this->input->get("\146\x72\157\x6d\137\x64\141\164\x65") && $this->input->get("\164\x6f\x5f\144\141\164\145")) { $zona_waktu = 3600 * $this->system->set["\x7a\x6f\x6e\141\x5f\x77\141\153\x74\x75"]; $from_date = $this->input->get("\x66\162\x6f\155\x5f\144\x61\x74\x65"); $to_date = $this->input->get("\164\157\137\144\x61\164\145"); $addsql .= "\40\x61\156\x64\x20\141\56\164\162\137\164\x61\x6e\x67\147\141\x6c\x20\x3e\x3d\40\x27" . (strtotime($from_date . "\x20\60\x30\72\x30\x30\72\x30\60") - $zona_waktu) . "\x27\40"; $addsql .= "\40\141\156\x64\x20\x61\56\164\x72\137\164\x61\156\x67\147\141\154\x20\x3c\75\40\47" . (strtotime($to_date . "\40\62\63\72\x35\71\x3a\65\x39") - $zona_waktu) . "\x27\40"; } if ($this->input->get("\x74\171\160\145") == "\152\x73\x6f\x6e") { $type = "\x6a\163\157\x6e"; } $param["\x6f\x70\137\160\x72\x6f\144\x75\153"] = $op_produk; $param["\146\162\x6f\155\x5f\x64\x61\164\x65"] = $from_date; $param["\164\x6f\x5f\x64\x61\x74\x65"] = $to_date; $param["\x64\x61\x74\141\163"] = $this->get_data("\163\145\x6c\x65\143\x74\x20\xa\40\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\142\x2e\157\160\137\x70\x72\x6f\144\165\153\54\12\x20\40\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\40\40\40\40\40\143\x2e\157\160\137\x6e\141\x6d\141\x2c\xa\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\40\40\40\40\x20\40\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x73\x75\x6d\50\141\56\x74\162\137\150\x61\x72\147\x61\62\x20\x2d\x20\x61\56\164\x72\x5f\151\156\x63\x6f\155\x65\x29\x20\x61\163\x20\160\x65\x6d\142\145\x6c\151\141\156\x2c\12\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\163\x75\155\x28\x61\x2e\164\162\x5f\x68\x61\x72\147\x61\x32\51\40\141\x73\x20\160\145\156\x6a\x75\141\154\x61\156\x2c\xa\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\163\165\155\x28\x61\x2e\164\162\x5f\x69\x6e\143\157\155\145\x29\x20\141\x73\x20\155\x61\x72\147\x69\156\x20\xa\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\x20\146\x72\x6f\x6d\40\x74\x72\141\156\x73\141\153\163\151\x20\141\x20\xa\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\152\157\151\x6e\40\166\x6f\165\x63\x68\x65\x72\40\142\40\157\x6e\x20\x61\56\166\x6f\x5f\151\144\40\75\x20\142\x2e\x76\157\x5f\151\x64\12\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\152\x6f\x69\156\40\157\x70\x65\162\141\164\x6f\x72\40\143\x20\157\x6e\x20\141\56\x6f\x70\137\x69\144\40\75\40\x63\x2e\157\160\137\151\144\xa\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\167\150\145\162\145\40\x61\56\x74\x72\x5f\163\164\141\164\165\163\137\x70\x65\155\x62\141\171\141\x72\x61\x6e\40\75\x20\x27\163\x75\153\x73\145\163\x27\x20\141\x6e\144\40\x61\56\x74\x72\137\163\x74\x61\x74\165\163\40\75\x20\x27\163\165\153\x73\x65\163\x27\40\141\156\x64\12\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\142\x2e\x6f\x70\x5f\160\x72\157\144\x75\x6b\40\75\x20\x27" . $op_produk . "\x27\x20{$addsql}\xa\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x67\x72\157\165\160\x20\x62\x79\40\x62\x2e\157\x70\137\160\x72\x6f\144\x75\x6b\x2c\x63\x2e\157\160\x5f\x6e\x61\x6d\x61\12\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x6f\162\144\x65\162\40\142\171\40\x62\x2e\x6f\x70\x5f\x70\x72\157\x64\165\153\x2c\143\x2e\x6f\160\x5f\156\x61\x6d\141

Function Calls

None

Variables

None

Stats

MD5 f5e3d2968f5a554a78451edca49ee320
Eval Count 0
Decode Time 62 ms