?
Current Path : /home1/savoy/public_html/oscarerp.com/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/oscarerp.com/application/views/report/xls_batch_allocation_report.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $html = '<html><head><body>'; $html.='<table width="100%"> <tr><td colspan="2"></td><td align="right"><img src="' . base_url() . 'assets/images/logo.gif" style="float:right"/></td> <tr><td colspan="3" style="font-size:16px;" align="center"><b><u>' . $postdata['report_name'] . '</u></b></td></tr> <tr><td colspan="3">Printout Date : ' . date('d-m-Y') . ', ' . date('h:i:s a') . '</td></tr> </table><br><br>'; $html.='<hr>'; $html.='<table cellspacing="-1" style="width:100%;text-align:left"> <thead> <tr><th style="text-align:left" bgcolor="#7FCEFF">Sl No</th>'; $i = 1; while ($i <= $postdata['field_count']) { if (isset($postdata['field_name_' . $i])) { $column_name = explode('~', $postdata['field_name_' . $i]); $html .= '<th style="text-align:left" bgcolor="#7FCEFF">' . str_replace('_', ' ', $column_name[1]) . '</th>'; } $i++; } $html.='</tr> </thead> <tbody>'; $i = 0; foreach ($report as $value) { $i++; $count=1; $rowspan = ""; if(isset($postdata['field_name_5'])||isset($postdata['field_name_6'])||isset($postdata['field_name_7'])){ $count= $value['count']; $rowspan = 'rowspan="'.$count.'"'; $course=explode(',', $value['course']); $date=explode(',', $value['allo_date']); } $html.='<tr> <td ' . $rowspan . '>'. $i . '</td>'; if (array_key_exists('field_name_1', $postdata)) $html.='<td ' . $rowspan . '>' . $value['reg_no'] . '</td>'; if (array_key_exists('field_name_2', $postdata)) $html.='<td ' . $rowspan . '>' . $value['first_name'] . '</td>'; if (array_key_exists('field_name_3', $postdata)) $html.='<td ' . $rowspan . '>' . $value['last_name'] . '</td>'; if (array_key_exists('field_name_4', $postdata)) $html.='<td ' . $rowspan . '>' . $value['gender'] . '</td> '; for($k=0;$k<$count;$k++){ if($k>0) { $html.='<tr>'; } if (array_key_exists('field_name_5', $postdata)){ $html.='<td>' . $course[$k] . '</td> '; } if (array_key_exists('field_name_6', $postdata)){ $html.='<td>' . $value['nationality_name']. '</td> '; } if (array_key_exists('field_name_6', $postdata)){ $html.='<td>' . $this->mastermodel->convertdatenormalformat($date[$k]) . '</td> '; } $html.='</tr>'; } } $html.='</tbody></table>'; $html.='<hr>'; $html.='</body></html>'; $filename = $postdata['report_name']; header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=".$filename.".xls"); header("Pragma: no-cache"); header("Expires: 0"); print $html; exit; ?>