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

Signing you up...

Thank you for signing up!

PHP Decode

<?php defined("\102\x41\x53\105\120\x41\x54\110") or die("\x4e\x6f\x20\144\x69\x72\145\x6..

Decoded Output download

<?php 
defined("BASEPATH") or die("No direct script access allowed"); 
class View_mapel extends CI_Controller 
{ 
    public function __construct() 
    { 
        parent::__construct(); 
        $this->sespre = $this->config->item("session_name_prefix"); 
        $this->d["admlevel"] = $this->session->userdata($this->sespre . "level"); 
        $this->d["admkonid"] = $this->session->userdata($this->sespre . "konid"); 
        $this->d["url"] = "view_mapel"; 
        $this->d["idnya"] = "viewmapel"; 
        $this->d["nama_form"] = "f_view_mapel"; 
        $get_tasm = $this->db->query("SELECT tahun FROM tahun WHERE aktif = 'Y'")->row_array(); 
        $this->d["tasm"] = $get_tasm["tahun"]; 
        cek_aktif(); 
    } 
    public function index() 
    { 
        $this->d["list_mapelkelas"] = $this->db->query("SELECT 
                                                a.id, b.kd_singkat nmmapel, a.id_mapel, a.id_kelas, c.nama nmkelas, b.is_sikap
                                                FROM t_guru_mapel a\xa                                                INNER JOIN m_mapel b ON a.id_mapel = b.id\xa                                                INNER JOIN m_kelas c ON a.id_kelas = c.id \xa                                                WHERE a.id_guru = '" . $this->d["admkonid"] . "'
                                                AND a.tasm = '" . $this->d["tasm"] . "'")->result_array(); 
        $this->d["p"] = "v_view_mapel"; 
        $this->load->view("template_utama", $this->d); 
    } 
    public function cetak_absensi($id) 
    { 
        $detil_mp = $this->db->query("select 
                a.tasm, a.id_kelas, a.tasm, b.nama nmmapel, c.nama nmguru, c.nip, d.nama kelas\xa                from t_guru_mapel a \xa                inner join m_mapel b on a.id_mapel = b.id
                inner join m_guru c on a.id_guru = c.id
                inner join m_kelas d on a.id_kelas = d.id
                where a.id = '" . $id . "'")->row_array(); 
        $strq = "select 
                c.nama, c.jk
                from t_kelas_siswa a 
                inner join m_siswa c on a.id_siswa = c.id
                where a.id_kelas = '" . $detil_mp["id_kelas"] . "' \xa                AND a.ta = LEFT('" . $detil_mp["tasm"] . "',4)
                ORDER BY c.nama ASC"; 
        $data = $this->db->query($strq)->result_array(); 
        $ta = substr($detil_mp["tasm"], 0, 4) . "/" . (substr($detil_mp["tasm"], 0, 4) + 1); 
        $sm = substr($detil_mp["tasm"], 4, 1); 
        $html = "<center>DAFTAR HADIR / PRESENSI SISWA</center><br>
        <table class="tablef">
            <tr>\xa                <td width="15%">Satuan Kerja</td>\xa                <td width="2%">:</td>
                <td width="28%">MTs N 5 Kulon Progo</td>\xa                <td width="10%"></td>
                <td width="15%">Kelas/Semester</td>\xa                <td width="2%">:</td>\xa                <td width="28%">" . $detil_mp["kelas"] . "/" . $sm . "</td>\xa            </tr>\xa            <tr><td>Tahun Pelajaran</td><td>:</td><td>" . $ta . "</td><td></td><td>Mata Pelajaran</td><td>:</td><td>" . $detil_mp["nmmapel"] . "</td></tr>
        </table>"; 
        $html .= "\xa            <table class="table">
                <tr>
                    <td rowspan="2" width="2%" class="ctr">No</td>\xa                    <td rowspan="2" width="22%" class="ctr">Nama</td>
                    <td rowspan="2" width="4%" class="ctr">JK</td>
                    <td colspan="25" class="ctr">Tgl</td>
                    <td colspan="3" class="ctr">Absensi</td>\xa                    <td rowspan="2" width="2%" class="ctr">Ket</td>
                </tr>\xa                <tr style="height: 60px">"; 
        for ($i = 1; $i <= 25; $i++) { 
            $html .= "<td width="2.5%"></td>"; 
        } 
        $html .= "<td width="2.5%" class="ctr">S</td><td width="2.5%" class="ctr">I</td><td width="2.5%" class="ctr">A</td></tr>"; 
        if (!empty($data)) { 
            $no = 1; 
            foreach ($data as $d) { 
                $html .= "<tr><td class="ctr">" . $no++ . "</td><td>" . $d["nama"] . "</td><td class="ctr">" . $d["jk"] . "</td>"; 
                for ($i = 1; $i <= 25; $i++) { 
                    $html .= "<td></td>"; 
                } 
                $html .= "<td></td><td></td><td></td><td></td></tr>"; 
            } 
        } 
        $html .= "<table class="tablef" style="margin-top: 10px">
            <tr>
            <td width="15%"></td>
            <td width="25%">\xa            Mengetahui,<br>\xa            Kepala Madrasah<br><br><br><br>\xa            Drs. Sukarlan<br>\xa            NIP. 19650422 200012 1 001
            </td>
            <td width="25%"></td>\xa            <td width="25%">
            Guru Mata Pelajaran,<br>\xa            <br><br><br><br>
            " . $detil_mp["nmguru"] . "<br>\xa            NIP. " . $detil_mp["nip"] . "
            </td>
            </tr>\xa            </table>"; 
        $this->d["html"] = $html; 
        $this->load->view("cetak_absensi", $this->d); 
    } 
} ?>

Did this file decode correctly?

Original Code

<?php
defined("\102\x41\x53\105\120\x41\x54\110") or die("\x4e\x6f\x20\144\x69\x72\145\x63\x74\40\163\143\162\x69\160\x74\x20\x61\x63\143\145\x73\163\x20\141\154\x6c\157\167\x65\x64");
class View_mapel extends CI_Controller
{
    public function __construct()
    {
        parent::__construct();
        $this->sespre = $this->config->item("\x73\145\163\x73\x69\x6f\156\x5f\156\141\x6d\145\137\x70\162\145\146\151\170");
        $this->d["\x61\144\155\154\145\x76\145\x6c"] = $this->session->userdata($this->sespre . "\154\145\x76\x65\154");
        $this->d["\141\x64\x6d\153\x6f\x6e\151\x64"] = $this->session->userdata($this->sespre . "\x6b\157\x6e\x69\144");
        $this->d["\x75\162\x6c"] = "\x76\x69\x65\x77\x5f\x6d\x61\160\x65\154";
        $this->d["\x69\x64\x6e\171\x61"] = "\166\x69\145\x77\x6d\x61\160\x65\x6c";
        $this->d["\x6e\141\155\x61\137\x66\157\162\155"] = "\146\137\x76\151\145\167\137\x6d\141\x70\145\154";
        $get_tasm = $this->db->query("\x53\105\114\x45\x43\124\x20\x74\x61\x68\x75\x6e\40\x46\x52\117\115\40\x74\141\150\x75\156\x20\127\110\105\122\x45\40\141\153\164\x69\146\x20\x3d\40\x27\131\47")->row_array();
        $this->d["\164\141\x73\155"] = $get_tasm["\164\141\x68\165\x6e"];
        cek_aktif();
    }
    public function index()
    {
        $this->d["\x6c\151\163\164\x5f\x6d\141\x70\145\x6c\x6b\145\154\141\x73"] = $this->db->query("\123\105\114\x45\103\124\40\12\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x61\x2e\x69\144\54\40\142\x2e\153\144\x5f\x73\151\x6e\147\x6b\141\x74\x20\156\155\155\x61\160\145\154\x2c\40\x61\56\151\144\x5f\x6d\x61\x70\x65\x6c\x2c\40\x61\56\x69\x64\x5f\x6b\145\x6c\141\163\x2c\x20\143\x2e\156\141\155\141\40\156\x6d\x6b\x65\154\x61\x73\54\40\142\x2e\x69\x73\137\x73\x69\153\x61\x70\12\40\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\40\40\x20\x20\40\x46\x52\117\x4d\x20\x74\137\147\x75\162\165\x5f\155\141\160\145\x6c\x20\141\xa\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\x49\x4e\116\105\x52\x20\x4a\117\111\x4e\x20\155\137\155\141\160\145\x6c\x20\x62\40\x4f\x4e\x20\141\x2e\x69\x64\x5f\155\141\x70\145\x6c\40\x3d\x20\x62\56\x69\x64\xa\x20\x20\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\111\x4e\x4e\x45\122\x20\112\117\x49\x4e\40\x6d\x5f\153\145\x6c\141\x73\40\143\40\x4f\x4e\x20\x61\x2e\151\x64\x5f\x6b\145\x6c\141\x73\40\75\x20\x63\56\151\x64\x20\xa\x20\40\40\40\x20\40\40\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x57\x48\x45\122\x45\40\x61\x2e\151\144\137\x67\x75\162\165\x20\75\x20\x27" . $this->d["\141\144\155\x6b\157\x6e\x69\144"] . "\47\12\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\40\40\x20\x41\x4e\x44\40\141\56\164\141\x73\x6d\x20\75\40\47" . $this->d["\x74\141\x73\155"] . "\47")->result_array();
        $this->d["\x70"] = "\x76\137\x76\x69\x65\x77\x5f\x6d\x61\160\145\154";
        $this->load->view("\164\145\x6d\160\x6c\x61\x74\145\x5f\165\164\x61\155\141", $this->d);
    }
    public function cetak_absensi($id)
    {
        $detil_mp = $this->db->query("\163\145\154\145\143\164\40\12\40\40\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\40\141\x2e\164\x61\x73\155\54\40\x61\x2e\151\x64\137\x6b\x65\154\141\163\x2c\x20\141\56\x74\141\163\x6d\54\40\142\56\156\x61\x6d\141\40\156\155\x6d\141\160\145\x6c\x2c\40\143\x2e\156\x61\x6d\141\40\x6e\155\147\x75\162\165\x2c\40\x63\56\156\151\x70\x2c\x20\144\56\x6e\141\x6d\x61\40\153\x65\154\x61\x73\xa\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x66\x72\x6f\155\x20\x74\137\147\165\162\165\137\x6d\x61\x70\145\x6c\x20\x61\x20\xa\40\40\40\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\151\156\156\x65\x72\x20\152\157\x69\x6e\40\x6d\137\155\x61\x70\145\x6c\40\x62\x20\x6f\x6e\x20\x61\56\x69\x64\x5f\155\x61\x70\x65\154\40\x3d\40\142\56\151\x64\12\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\151\156\156\x65\x72\x20\152\157\151\156\x20\155\x5f\147\165\162\165\40\143\40\x6f\x6e\40\141\56\x69\144\137\x67\x75\x72\x75\40\75\40\143\x2e\x69\144\12\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x69\156\x6e\145\x72\40\x6a\157\151\156\40\x6d\137\153\145\x6c\x61\x73\40\x64\40\x6f\156\40\141\56\151\x64\x5f\x6b\145\x6c\141\163\x20\x3d\x20\x64\x2e\x69\144\12\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x77\x68\145\162\145\x20\141\x2e\x69\x64\x20\x3d\x20\x27" . $id . "\47")->row_array();
        $strq = "\163\145\154\145\143\x74\40\12\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\143\x2e\x6e\x61\155\x61\x2c\40\143\56\152\x6b\12\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\146\162\157\x6d\40\164\137\153\x65\154\x61\163\x5f\163\151\163\x77\x61\40\x61\40\12\40\40\40\40\x20\40\40\40\40\40\40\40\40\x20\x20\x20\151\156\x6e\x65\162\40\152\157\151\x6e\x20\x6d\137\x73\x69\163\167\x61\40\143\x20\157\156\x20\141\x2e\151\144\137\163\151\x73\x77\x61\x20\x3d\x20\143\x2e\151\x64\12\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\x77\150\x65\162\145\x20\x61\x2e\151\144\137\153\x65\x6c\x61\x73\40\x3d\x20\47" . $detil_mp["\x69\x64\x5f\153\x65\154\141\163"] . "\47\x20\xa\40\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\x41\x4e\104\x20\x61\x2e\x74\x61\x20\75\x20\114\x45\x46\x54\x28\x27" . $detil_mp["\x74\x61\163\x6d"] . "\47\x2c\x34\x29\12\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x4f\x52\x44\x45\122\x20\102\x59\40\143\56\156\141\155\x61\40\101\123\x43";
        $data = $this->db->query($strq)->result_array();
        $ta = substr($detil_mp["\x74\x61\163\155"], 0, 4) . "\x2f" . (substr($detil_mp["\164\141\x73\x6d"], 0, 4) + 1);
        $sm = substr($detil_mp["\164\141\x73\155"], 4, 1);
        $html = "\74\143\x65\x6e\x74\x65\162\76\104\101\x46\124\x41\122\x20\x48\x41\x44\x49\x52\x20\57\40\120\x52\x45\123\x45\116\x53\x49\40\123\x49\123\x57\x41\74\x2f\143\145\x6e\164\145\162\x3e\x3c\x62\x72\x3e\12\x20\40\40\40\40\x20\x20\x20\x3c\164\x61\x62\154\145\40\x63\154\x61\163\163\x3d\x22\x74\x61\142\154\x65\x66\x22\x3e\12\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\40\74\164\162\x3e\xa\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x3c\164\x64\x20\167\151\x64\164\x68\75\42\61\65\45\42\76\123\141\x74\165\141\156\40\113\x65\162\x6a\x61\74\57\x74\144\76\xa\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x3c\164\144\40\167\151\x64\164\150\x3d\42\x32\45\42\x3e\x3a\x3c\x2f\x74\144\76\12\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\74\x74\144\40\167\x69\x64\x74\x68\x3d\42\x32\70\45\42\x3e\x4d\x54\x73\x20\116\40\65\x20\113\x75\154\x6f\x6e\40\x50\162\x6f\x67\x6f\x3c\x2f\x74\144\76\xa\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x3c\164\144\40\167\151\144\x74\x68\x3d\42\x31\60\x25\x22\76\74\57\x74\144\x3e\12\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x3c\164\144\x20\167\x69\x64\x74\x68\x3d\x22\x31\65\x25\x22\76\x4b\145\154\x61\x73\57\123\145\x6d\145\x73\164\x65\162\74\x2f\x74\144\x3e\xa\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\74\x74\144\40\x77\151\144\164\150\x3d\42\62\45\42\76\72\x3c\57\164\x64\x3e\xa\x20\40\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\40\74\164\x64\x20\x77\x69\x64\164\x68\75\x22\62\x38\x25\42\76" . $detil_mp["\153\145\x6c\x61\163"] . "\x2f" . $sm . "\74\x2f\164\x64\76\xa\40\40\40\40\40\40\x20\40\40\x20\x20\40\x3c\57\164\x72\x3e\xa\40\40\x20\x20\40\40\40\40\40\x20\x20\40\74\x74\162\76\x3c\x74\x64\76\x54\x61\150\x75\156\x20\120\x65\154\141\x6a\x61\x72\141\156\x3c\x2f\x74\144\76\x3c\164\144\x3e\72\74\57\164\x64\76\74\164\x64\x3e" . $ta . "\74\57\164\x64\x3e\74\x74\x64\76\74\x2f\x74\x64\76\74\x74\x64\76\x4d\x61\x74\141\x20\x50\145\154\141\152\141\162\141\156\74\57\x74\144\76\x3c\x74\144\76\72\x3c\x2f\164\144\76\x3c\x74\x64\x3e" . $detil_mp["\x6e\x6d\155\141\x70\x65\154"] . "\x3c\57\x74\x64\x3e\74\57\164\x72\76\12\40\x20\x20\40\x20\40\x20\x20\x3c\x2f\x74\x61\x62\x6c\x65\x3e";
        $html .= "\xa\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\74\x74\141\x62\154\x65\x20\x63\x6c\141\163\x73\x3d\42\164\x61\142\x6c\x65\42\x3e\12\40\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\74\x74\x72\x3e\12\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\74\164\144\x20\x72\157\167\163\x70\x61\x6e\x3d\42\62\x22\x20\167\151\x64\x74\x68\x3d\x22\62\x25\x22\40\143\154\141\163\x73\75\42\x63\164\162\x22\x3e\x4e\x6f\74\x2f\x74\x64\76\xa\40\40\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x3c\164\x64\x20\162\x6f\x77\163\x70\x61\156\x3d\42\62\42\x20\x77\x69\x64\164\x68\x3d\x22\x32\62\45\x22\40\143\x6c\x61\163\x73\75\x22\143\164\x72\x22\x3e\116\x61\x6d\x61\x3c\x2f\x74\144\76\12\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\x20\74\164\144\x20\162\157\x77\x73\160\141\156\x3d\x22\62\x22\x20\167\151\x64\164\x68\75\x22\64\x25\x22\x20\x63\x6c\141\163\163\x3d\42\143\x74\162\x22\76\112\113\74\57\164\x64\76\12\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\74\x74\x64\x20\143\157\154\163\160\141\156\x3d\x22\62\65\x22\x20\x63\154\x61\x73\x73\75\42\143\x74\162\x22\76\124\x67\x6c\74\x2f\164\x64\x3e\12\40\40\40\x20\40\x20\40\40\40\40\40\40\40\x20\x20\40\40\40\40\40\74\x74\144\40\143\x6f\x6c\x73\160\x61\156\75\42\x33\42\x20\x63\154\x61\x73\x73\75\x22\143\x74\x72\42\x3e\x41\x62\x73\x65\156\163\x69\74\57\164\x64\x3e\xa\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\74\164\x64\x20\162\157\167\x73\x70\141\156\75\x22\62\42\40\167\x69\144\164\150\x3d\x22\62\x25\x22\x20\143\x6c\x61\163\163\x3d\x22\x63\164\x72\x22\x3e\113\x65\x74\74\x2f\x74\144\x3e\12\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\74\x2f\x74\162\x3e\xa\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x3c\164\162\40\163\164\171\x6c\x65\75\42\x68\x65\x69\147\150\164\x3a\x20\x36\60\160\x78\42\x3e";
        for ($i = 1; $i <= 25; $i++) {
            $html .= "\74\164\x64\40\167\x69\x64\x74\x68\75\x22\x32\56\65\x25\x22\76\74\57\164\144\x3e";
        }
        $html .= "\74\x74\144\x20\167\151\144\164\150\75\x22\x32\56\65\45\x22\x20\x63\154\x61\x73\x73\75\x22\143\164\162\42\76\123\74\x2f\164\144\76\x3c\164\144\x20\x77\x69\144\x74\x68\75\x22\x32\x2e\65\x25\42\40\143\x6c\141\x73\163\75\42\x63\x74\x72\42\x3e\x49\74\57\164\x64\76\x3c\164\144\40\167\x69\x64\164\150\x3d\42\x32\x2e\x35\45\x22\40\x63\154\x61\163\163\x3d\42\143\x74\162\42\x3e\101\x3c\57\164\144\x3e\x3c\57\164\162\x3e";
        if (!empty($data)) {
            $no = 1;
            foreach ($data as $d) {
                $html .= "\x3c\164\x72\x3e\74\164\144\x20\x63\x6c\141\x73\x73\x3d\42\x63\164\x72\x22\x3e" . $no++ . "\74\x2f\x74\x64\x3e\x3c\x74\144\x3e" . $d["\x6e\141\155\141"] . "\x3c\x2f\x74\x64\x3e\x3c\x74\x64\40\143\154\x61\x73\163\x3d\x22\143\164\162\42\76" . $d["\x6a\x6b"] . "\74\x2f\x74\144\x3e";
                for ($i = 1; $i <= 25; $i++) {
                    $html .= "\x3c\x74\x64\76\x3c\x2f\x74\144\76";
                }
                $html .= "\74\x74\144\76\74\x2f\164\x64\x3e\74\x74\x64\76\74\57\164\x64\76\74\164\144\76\x3c\57\x74\x64\x3e\74\x74\x64\76\74\x2f\x74\144\x3e\74\x2f\164\162\76";
            }
        }
        $html .= "\x3c\x74\141\x62\154\145\x20\x63\x6c\x61\163\163\75\42\164\141\x62\154\x65\x66\x22\x20\163\164\171\154\x65\x3d\42\155\x61\x72\147\x69\156\55\164\x6f\x70\x3a\40\61\60\160\170\42\76\12\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\74\164\x72\x3e\12\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\x3c\x74\144\40\x77\151\x64\x74\x68\x3d\42\x31\65\45\x22\x3e\74\57\x74\144\x3e\12\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\74\164\144\x20\x77\151\x64\164\x68\75\x22\62\x35\x25\42\x3e\xa\40\40\40\40\x20\40\40\x20\40\40\x20\40\x4d\x65\x6e\147\145\x74\x61\x68\165\x69\x2c\74\x62\x72\76\xa\x20\40\40\40\x20\40\40\40\40\x20\40\40\x4b\145\160\x61\154\x61\x20\x4d\x61\x64\x72\x61\163\x61\150\74\x62\x72\76\x3c\142\162\x3e\x3c\142\x72\x3e\x3c\x62\162\x3e\xa\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\x44\162\x73\x2e\x20\x53\165\153\x61\x72\154\141\x6e\74\x62\162\x3e\xa\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\x4e\111\120\56\x20\61\x39\66\65\60\x34\62\62\x20\62\60\x30\60\x31\62\x20\x31\40\60\x30\x31\12\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\74\57\x74\144\76\12\40\x20\x20\40\40\40\40\40\x20\40\40\x20\x3c\164\x64\40\167\151\144\164\150\x3d\x22\62\65\x25\42\76\74\x2f\x74\x64\x3e\xa\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\74\x74\144\40\x77\x69\144\164\x68\x3d\x22\62\65\45\x22\x3e\12\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\107\165\162\165\40\115\x61\164\x61\x20\x50\x65\154\141\152\141\x72\x61\x6e\x2c\74\x62\162\x3e\xa\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\74\x62\x72\x3e\74\x62\162\76\x3c\142\x72\x3e\x3c\142\x72\x3e\12\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20" . $detil_mp["\156\155\147\x75\x72\x75"] . "\x3c\x62\162\76\xa\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x4e\111\120\x2e\40" . $detil_mp["\156\151\x70"] . "\12\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x3c\x2f\x74\x64\76\12\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x3c\x2f\x74\162\x3e\xa\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x3c\57\x74\x61\x62\x6c\x65\x3e";
        $this->d["\150\164\x6d\154"] = $html;
        $this->load->view("\143\145\x74\141\153\x5f\x61\x62\163\145\156\163\151", $this->d);
    }
}

Function Calls

None

Variables

None

Stats

MD5 9d26d44ae7e0e195dedd23273f06de5d
Eval Count 0
Decode Time 72 ms