JezK
Edit File: monthlyStaffUpdate.php
<?php $currentPage="monthlyReports"; include("header.php"); ?> <div id="page-wrapper"> <div class="container-fluid"> <!-- Page Heading --> <div class="row"> <div class="col-lg-12"> <h1 class="page-header"> <small>View Staff</small> </h1> </div> </div> <!-- /.row --> <div class="row table-responsive" > <div class="col-md-12"> <div class="form-group"> <label class="col-md-2">Select Type</label> <select class="cs-textfield" name="staffType" id="staffType"> <option value="working">Staff working</option> <option value="left">Staff Left</option> </select> </div> <div class="row"> <div class="table-responsive"> <div class="col-md-12"> <table id="example" class="table table-striped table-bordered" cellspacing="0" width="100%"> <thead> <tr> <th>S.No</th> <th>District Name</th> <th>Staff Full Name</th> <th>Designation</th> <th>Date of Birth</th> <th>Gender</th> <th>Action</th> </tr> </thead> <tbody> <tr> <td>1. </td> <td>EG</td> <td>fg</td> <td>fgfg</td> <td>fgfg</td> <td>fgfg</td> <td><a href="veiwStaff.php">View</a></td> </tr> </tbody> </table> </div> </div> </div> <!-- /.row --> <div class="col-md-12 text-center"> <input type="submit" value="Submit" name="submit" id="submit" class="btn btn-cs"> </div> </div> </div> <!-- /.row --> </div> <!-- /.container-fluid --> </div> <!-- /#page-wrapper --> <?php include("footer.php");?>