?
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/viewsingleactivity.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <?php foreach($viewactivity as $updata) { $eventname= $updata['eventname']; $description=$updata['description']; $location=$updata['location']; $status=$updata['status']; $priority=$updata['priority']; $edate=$updata['enddate']; $etim=substr($edate,11,5); $endate=substr($edate,0,10); $dateends = $this->mastermodel->convdatformat($endate); $sdate=$updata['startdate']; $stim=substr($sdate,11,5); $stdate=substr($sdate,0,10); $datestarts = $this->mastermodel->convdatformat($stdate); ?> <style> #ndiv { float:left; min-height:25px; width:25%; } #div1 { float:left; color:gray; min-height:25px; width:70%; } #dot { float:left; min-height:25px; width:2%; } </style> <fieldset> <div style="width: 100%"> <div style="width: 100%; border-bottom: 2px solid gray; border-right: 2px solid gray; height: 30px; font-size: 16px; text-align: center;background-color: #eae8df"> <?=$eventname ?> </div> <ul><li><div><label>Description</label><div id="dot">:</div><div id="div1"> <?=nl2br($description) ?></div></div></li> <li><div><label>Location</label><div id="dot">:</div><div id="div1"> <?=$location ?></div></div></li> <li><div><label>Status</label><div id="dot">:</div><div id="div1"> <?=$status ?></div></div></li> <li><div><label>Priority</label><div id="dot">:</div><div id="div1"> <?=$priority ?></div></div></li> <li><div><label>Start Date</label><div id="dot">:</div><div id="div1"> <?=$datestarts.' on '.$stim ?></div></div></li> <li><div><label>End Date</label><div id="dot">:</div> <div id="div1"> <?=$dateends.' on '.$etim ?></div></div></li> </ul> </div> </fieldset> <?php $date2=date('Y-m-d'); $days = (strtotime($endate) - strtotime($date2)) / (60 * 60 * 24); echo $days. ' day(s) left'; } ?>