?
Current Path : /home1/savoy/www/savoyglobal.net/drafthr/system/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/drafthr/system/application/views/Home/todaysactivitypage.php |
<fieldset><legend>View Today's Activities</legend> <table class="sort"> <tr> <th width="10%">Sl No.</th> <th width="20%">Event Name</th> <th width="25">Description</th> <th width="15%">Start Date</th> <th width="15%">End Date</th> <th width="15%">Status</th> </tr> <?php $i=0; foreach ($remlist as $remind) { $i=$i+1; $edate=$remind['enddate']; $etim=substr($edate,11,5); $endate=substr($edate,0,10); $dateends = $this->mastermodel->convdatformat($endate); $sdate=$remind['startdate']; $stim=substr($sdate,11,5); $stdate=substr($sdate,0,10); $datestarts = $this->mastermodel->convdatformat($stdate); echo "<tr><td>".$i."</td><td>".$remind['eventname']."</td><td>".$remind['description']."</td> <td>".$datestarts.'<br/>'.$stim."</td><td>".$dateends.'<br/>'.$etim."</td><td>".$remind['status']."</td>"; echo "</tr>"; } ?> </table> </fieldset>