ESH/contra_indication_excel.php
2024-10-23 18:28:06 +05:30

24 lines
723 B
PHP

<?php //include('pdf_header.php');
include('includes/config/config.php');
//include('pop_up_top.php');
header('Content-Type: application/force-download');
header('Content-disposition: attachment; filename=excel_contra_indication_list.xls');
?>
<table border="1">
<?php
$sql="select cindication_id, cindication_name from contra_indication";
//echo $sql;
$result = mysqli_query($conn,$sql);
?><tr><th>SR </th><th>Contra Indication</th></tr><?php
$count=1;
while($rowOfEmployee=mysqli_fetch_array($result)){
?><tr><td><?php echo $count?></td><td style = "text-transform: uppercase;"><?php echo $rowOfEmployee['cindication_name']?></td>
</tr><?php
$count++;
}
?>
</table>
<?php
//include('pdf_footer.php');
?>