26 lines
623 B
PHP
26 lines
623 B
PHP
<?php
|
|
include('includes/config/config.php');
|
|
include('includes/functions.php');
|
|
|
|
// Set headers for the Excel file
|
|
header('Content-Type: application/vnd.ms-excel');
|
|
header('Content-Disposition: attachment; filename="Govemnet Participation Template.xls"');
|
|
header('Pragma: no-cache');
|
|
header('Expires: 0');
|
|
|
|
?>
|
|
|
|
<table border="1" cellspacing="0" cellpadding="5">
|
|
|
|
<tr bgcolor='#eeeeee'>
|
|
<th width="5%">DATE (DD/MM/YYYY)</th>
|
|
<th width="10%">NAME</th>
|
|
<th width="10%">DESIGNATION</th>
|
|
<th width="10%">NUMBER</th>
|
|
<th width="10%">VILLAGE</th>
|
|
<th width="10%">STREET LOCATION</th>
|
|
|
|
</tr>
|
|
|
|
</table>
|