?
Current Path : /home1/savoy/public_html/savoyglobal.net/eldertree/application/views/report/ |
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/eldertree/application/views/report/xls_personal_report.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $i=1; $span = 0; while ($i < $postdata['field_count']) { if (array_key_exists("field_name_$i", $postdata)) $span++; $i++; } ?> <html><head><body> <table width="100%"> <tr> <td colspan="<?= $span-2 ?>"></td> <td align="right"> <img src="<?= base_url() ?>assets/logo/<?= $logo ?>" style="float:right; max-height: 100px;"/> </td> </tr> <tr> <td colspan="3" style="font-size:16px;" align="center"><b><u>Personal Report</u></b></td> </tr> <tr> <td colspan="3">Printout Date :<?= date('d-m-Y') ?>, <?= date('h:i:s a') ?></td> </tr> </table> <br><br> <hr> <table cellspacing="-1" style="width:100%;text-align:left" border="1"> <thead> <tr><th style="text-align:left" bgcolor="#7FCEFF">Sl No</th> <?php foreach ($report as $key => $value) { $column_name = array_keys($value); } foreach($column_name as $key) { echo "<th style='text-align:left' bgcolor='#7FCEFF'>".str_replace('_', ' ', $key)."</th>"; } ?> </tr> </thead> <tbody> <?php $i=0; foreach ($report as $value) { $i++; ?> <tr><td><?= $i ?></td> <?php foreach ($value as $key => $value1) { $pos=strpos($key, 'Date'); if($pos !== false) { $value[$key]=$this->mastermodel->convertdatenormalformat($value[$key]); } ?> <td><?= $value[$key] ?></td> <?php } } ?> </tbody></table> <hr> </body></html> <?php $filename = $postdata['report_name']; if ($view == 'xls') { header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=" . $filename . ".xls"); header("Pragma: no-cache"); header("Expires: 0"); } ?>