[EDIT] FILE: resume.php
<?php session_start(); if(empty($_SESSION['logged_in_id'])){ header('Location:login.php'); } include_once('includes/db.php'); $ob = new database(); include('function.php'); head(); ?> <div class="content-wrapper"> <!-- Main content --> <section class="content mt-2"> <div class="container-fluid"> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-header"> <h2 class="card-title">Resume Details</h2> </div> <!-- /.card-header --> <div class="card-body"> <table id="example50" class="table table-bordered table-striped"> <thead> <tr> <th>S no.</th> <th>Name</th> <th>Email</th> <th>Mobile</th> <th>Qualification</th> <th>Experience</th> </tr> </thead> <tbody id="show_enquiry" class="show_enquiry"></tbody> </table> </div> <!-- /.card-body --> </div> <!-- /.card --> </div> <!-- /.col --> </div> <!-- /.row --> </div> <!-- /.container-fluid --> </section> <!-- /.content --> </div> <?php foter(); ?>
SAVE
CANCEL