D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
ci_panel
/
application
/
views
/
user
/
Filename :
pp.php
back
Copy
<?php $data['title'] = "Previous Principal"; $this->load->view("user/common/header",$data); $this->load->view("user/common/banner", $data); ?> <!-- pages content start --> <section class="inner-wrapper"> <div class="container"> <div class="row offset"> <h2>Previous <span>Principal's</span></h2> <div class="inner-wrapper-main offset-top-30"> <div class="col-sm-8 col-sm-offset-2 col-xs-offset-0 table-responsive"> <table class="table-custom striped table-color"> <thead> <tr> <th>S. No.</th> <th>Name</th> <th>Tenure</th> </tr> </thead> <tbody> <?php $i = 1; foreach($pp as $pp){ ?> <tr> <td><?php echo $i; ?>. </td> <td><?php echo $pp['pp_name'] ?></td> <td><?php echo $pp['pp_tenure'] ?></td> </tr> <?php $i++; } ?> </tbody> </table> </div> </div> </div> </div> </section> <!-- pages content end --> <?php $this->load->view("user/common/footer_op");?>