golden hour
/home/phakp/public_html/bkp_full/old_site_bkp/application/views/news
⬆️ Go Up
Upload
File/Folder
Size
Actions
Events.php
1.09 KB
Del
OK
News.php
1.25 KB
Del
OK
News_polio.php
1.27 KB
Del
OK
Edit: Events.php
<div role="main" class="main"> <div class="container"> <div class="row mt-xlg"> <div class="col-md-12"> <h2><strong>Events Detail</strong> </h2> <p> <?php /*?> <table style="background-image:url('<?php echo base_url()?>img/officerbg.jpg'); background-repeat:no-repeat;" width="100%" cellspacing="5" cellpadding="5" bordercolor="#000000" ><?php */?> <table class="table table-border table-responsive"> <tr style="background-color:#741A7E; color:#FFF"> <th>Serial#</th> <th>Events Title</th> <th>Events Detail</th> </tr> <tbody> <?php $i=1; foreach($events as $row){?> <tr> <td><?php echo $i;?></td> <td><?php echo $row->events_title;?></td> <td><strong><?php echo $row->events_detail;?></td> </tr> <?php $i++; }?> </tbody> </table> </p> </div> </div> <hr class="tall"> </div> </div>
Save