ESH/communication_item_pdf.php

25 lines
595 B
PHP
Raw Permalink Normal View History

2024-10-23 18:28:06 +05:30
<?php include('pdf_header.php');
//include('includes/config/config.php');
//include('pop_up_top.php');
?>
<table class="col-sm-offset-5" border="1">
<?php
$sql="select * from communication";
//echo $sql;
$result = mysqli_query($conn,$sql);
//echo $result;
?><tr bgcolor='#eeeeee'><th width=33%>SR. NO</th><th width=33%>COMMUNICATION ITEM NAME
</th></tr><?php
$count =1;
while($rowOfEmployee=mysqli_fetch_array($result)){
?><tr><td><?php echo $count?></td><td><?php echo $rowOfEmployee['com_item']?></td></tr><?php
$count++;
}
?>
</table>
<?php
include('pdf_footer.php');
?>