?
Current Path : /home1/savoy/public_html/savoyglobal.net/futuredraft/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/public_html/savoyglobal.net/futuredraft/application/views/home/dsh.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <script> function fee_pending_alerts() { alert() } </script> <div class="grid_12"> <div class="box"> <div class="header main no-icon"> <span></span> </div> <div class="content " id="alert_table" > <table id="table-example" class="table"> <thead> <tr> <th>Sl No</th> <th>Type</th> <th>Count</th </tr> </thead> <tbody> <?php $alerts=$this->mastermodel->getdatas('alert_master'); if (count($alerts)) { $z = 1; $i = 0; foreach ($alerts as $row) { if ($z % 2 == 0) $alt = "alt"; else $alt = "alt1"; ?> <tr class="<?= $alt; ?>"> <td style="text-align: center;"><?= ++$i; ?></td> <td><a onclick="viewalerts('<?= $row['alert_master_type'] ?>','home')" ><?= $row['alert_master_name']; ?></a></td> <td> <?php $count=$row['alert_target']; $check1 = $this->mastermodel->$count(); echo count($check1); ?> </td> <?php $z++; } ?> </tr> <?php } ?> </tbody> </table> </div> </div> </div>