D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
skdesign
/
public_html
/
admin
/
Filename :
body.php
back
Copy
<!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6"> <h1 class="m-0">Dashboard</h1> </div><!-- /.col --> <div class="col-sm-6"> <ol class="breadcrumb float-sm-right"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item active">Dashboard v1</li> </ol> </div><!-- /.col --> </div><!-- /.row --> </div><!-- /.container-fluid --> </div> <!-- /.content-header --> <!-- Main content --> <section class="content"> <div class="container-fluid"> <!-- Main row --> <div class="row"> <!-- Left col --> <section class="col-lg-12 "> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>From</th> <th>To</th> <th> Subject</th> <th>Detail</th> <th>Phone</th> </tr> </thead> <tbody> <?php include('connect.php'); $done="select * from contact order by id desc"; $done1=mysqli_query($conn,$done); while($row=mysqli_fetch_array($done1)){ ?> <tr> <td><?php echo $row['from_email'];?></td> <td><?php echo $row['to_email'];?> </td> <td> <?php echo $row['subject'];?> </td> <td> <?php echo $row['detail'];?> </td> <td> <?php echo $row['phone'];?> </td> </tr> <?php }?> </tfoot> </table> </section> <!-- /.Left col --> </div> <!-- /.row (main row) --> </div><!-- /.container-fluid --> </section> <!-- /.content --> </div> <!-- /.content-wrapper -->