?
Current Path : /home1/savoy/www/savoyglobal.net/sgms/application/views/HR/ |
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/sgms/application/views/HR/view_attendance_report.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <table class="sort" cellpadding="0" cellspacing="0"> <caption><?=$_SESSION['menuname'];?></caption> <thead> <tr> <th>Sl No</th> <th>Report Name</th> </tr> </thead> <tbody> <?php if ($viewinfo->num_rows() > 0) { $z=1; $i=($pagenum-1)*10; foreach ($viewinfo->result() as $row) { if($z%2==0) $alt="alt"; else $alt="alt1"; ?> <tr class="<?=$alt;?>"> <td><?=++$i;?></td> <td><a href="#" onclick="<?=$row->report_target?>" ><?=$row->report_label;?></a></td> <?php $z++; } ?> </tr> <?php } ?> </tbody> </table>