?
Current Path : /home1/savoy/www/savoyglobal.net/gea/application/views/home/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/www/savoyglobal.net/gea/application/views/home/leftmain.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <div id="events-column-main" > <div> </div> <div> </div> <?php $viewinfo=$this->mastermodel->getreminder(); ?> <table class="sort" cellpadding="0" cellspacing="0" width="100%" style="margin-top: 20px;margin-left: 20px;"> <caption>Reminders</caption> <thead> <tr> <th>Sl No</th> <th>Subject</th> <th>Date</th> </tr> </thead> <tbody> <?php if ($viewinfo->num_rows() > 0) { $table=""; $field=""; $z=1; foreach ($viewinfo->result() as $row) { if($z%2==0) $alt="alt"; else $alt="alt1"; ?> <tr class="<?=$alt;?>"> <td><?=$z;?></td> <td><?=$row->reminder_subject;?></td> <td><?=$this->mastermodel->convertdatenormalformat($row->reminder_date);?></td> <?php $z++; } } ?> </tbody> </table> </div>