?
Current Path : /home1/savoy/public_html/savoyglobal.net/sgms/application/views/Training/ |
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/sgms/application/views/Training/single_event_calendar.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="select-bar"> <span class="heading"> Event Details</span> </div> <fieldset> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('',$attributes); ?> <ul> <li> <table class="sort"> <tr> <td width="30%">Event Title</td> <td width="70%"><?php echo $viewinfo->event_title; ?></td> </tr> <tr> <td>Trainer Name</td> <td><?php echo $viewinfo->trainer_name; ?></td> </tr> <tr> <td>Start Date</td> <td><?php echo $this->mastermodel->convertdatenormalformat($viewinfo->event_start_date); ?></td> </tr> <tr> <td>End Date</td> <td><?php echo $this->mastermodel->convertdatenormalformat($viewinfo->event_start_date); ?></td> </tr> <tr> <td>Event Location</td> <td><?php echo $viewinfo->event_location; ?></td> </tr> <tr> <td>Description</td> <td><?php echo $viewinfo->event_description; ?></td> </tr> </table> </li> </ul> <?php echo form_close();?> </fieldset>