File "application.php"
Full Path: /home/ovanhxso/public_html/panel/admin/app/application.php
File size: 3.3 KB
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
include '../assets/constant/config.php';
try {
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $e) {
echo "Connection failed: " . $e->getMessage();
}
?>
<?php include('include/sidebar.php'); ?>
<!-- Top Bar End -->
<?php include('include/header.php'); ?>
<div class="page-content-wrapper ">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div class="page-title-box">
<h4 class="page-title">View Contacts</h4>
</div>
</div>
<div class="clearfix"></div>
</div>
<!-- end page title end breadcrumb -->
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<div class="table-responsive">
<table id="datatable-buttons" class="table table-striped table-bordered dt-responsive nowrap" style="border-collapse: collapse; border-spacing: 0; width: 100%;" enctype="multipart/form-data">
<thead>
<tr>
<th>Serial</th>
<th>Name</th>
<th>Email</th>
<th>experience</th>
<th>post</th>
</tr>
</thead>
<tbody>
<?php
$stmt = $conn->prepare("SELECT * FROM `application` ");
$stmt->execute();
$record = $stmt->fetchAll();
$i = 1;
foreach ($record as $key) { ?>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $key['name']; ?></td>
<td><?php echo $key['email']; ?></td>
<td><?php echo $key['exp']; ?></td>
<td><?php echo $key['post']; ?></td>
</tr>
<?php $i++;
} ?>
</tbody>
</tbody>
</table>
</div><!--end /tableresponsive-->
</div><!--end card-body-->
</div><!--end card-->
</div><!--end col-->
</div><!--end row-->
</div> <!-- Page content Wrapper -->
</div> <!-- content -->
<?php include('include/footer.php'); ?>