?
Current Path : /home1/savoy/public_html/savoyglobal.net/application/views/admin/ |
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/application/views/admin/single_page.php |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <?php $this->load->view('admin/header'); ?> <body> <script type="text/javascript"> $(document).ready(function() { $("#myTable").tablesorter(); } ); </script> <?php $this->load->view('admin/menu'); ?> <div class="container_12"> <!-- Example table --> <div class="module"> <h2><span>Contact Details</span></h2> <div class="module-body"> <?php $viewinfo = $this->mastermodel->get_data_srow('contact', $id, 'contact_id'); ?> <p> <label>Name</label> <input readonly type="text" name="contact_name" id="contact_name" value="<?= $viewinfo->contact_name ?>" class="input-medium " /> </p> <p> <label>Email</label> <input readonly type="text" name="contact_email" id="contact_email" value="<?= $viewinfo->contact_email ?>" class="input-medium " /> </p> <p> <label>Contact Number</label> <input readonly type="text" name="contact_phone" id="contact_phone" value="<?= $viewinfo->contact_phone ?>" class="input-medium " /> </p> <p> <label>Message</label> <textarea readonly class="input-medium "><?= $viewinfo->contact_message; ?></textarea> </p> <div style="clear: both"></div> </div> <!-- End .module-table-body --> </div> <!-- End .module --> <div style="clear:both;"></div> </div> <!-- End .container_12 --> <?php $this->load->view('admin/footer'); ?> </body> </html>