27 lines
777 B
PHP
27 lines
777 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_taskfrequency.xls');
|
||
|
?>
|
||
|
<table border="1">
|
||
|
<?php
|
||
|
$sql="select * from task_frequency_master";
|
||
|
//echo $sql;
|
||
|
$result = @mysqli_query($conn,$sql);
|
||
|
//echo $result;
|
||
|
|
||
|
?><tr bgcolor="#eeeeee"><th width="10%">Frequency Id</th><th width="10%">Frequency Name</th><th width="25%">Frequency Code</th></tr><?php
|
||
|
$i=0;
|
||
|
while($row=@mysqli_fetch_array($result)){
|
||
|
$i++;
|
||
|
|
||
|
|
||
|
|
||
|
?><tr><td><?php echo $i?></td><td><?php echo $row['frequency_name']?></td><td><?php echo $row['frequency_code']?></td></tr><?php
|
||
|
}
|
||
|
?>
|
||
|
</table>
|
||
|
<?php
|
||
|
//include('pdf_footer.php');
|
||
|
?>
|