34 lines
927 B
PHP
34 lines
927 B
PHP
<?php //include('pdf_header.php');
|
|
include('includes/config/config.php');
|
|
include ('includes/functions.php');
|
|
|
|
|
|
|
|
//include('pop_up_top.php');
|
|
header('Content-Type: application/force-download');
|
|
header('Content-disposition: attachment; filename=Beneficiary Upload Temp.xls');
|
|
?>
|
|
|
|
|
|
<table border="1">
|
|
|
|
<tr>
|
|
|
|
<td width="3%">Beneficiary Name</td>
|
|
<td width="7%">Date Of Enquiry(DD/MM/YYYY)</td>
|
|
<td width="10%">Course Code</td>
|
|
<td width="10%">Gender(M/F/O)</td>
|
|
<td width="10%">Village</td>
|
|
<td width="10%">Date Of Birth(DD/MM/YYYY)</td>
|
|
<td width="10%">Beneficiary Phone</td>
|
|
<td width="10%">Aadhar Linked Phone</td>
|
|
<td width="10%">Parents Phone</td>
|
|
<td width="10%">Education Code</td>
|
|
<td width="10%">Reference From</td>
|
|
<td width="10%">Beneficiary Type(VTI/CSR)</td>
|
|
|
|
</tr>
|
|
|
|
|
|
</table>
|