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

22 lines
670 B
PHP

<?php include('pdf_header.php');
include('includes/config/config.php');
//include('pop_up_top.php');
?>
<table border="1">
<?php
$sql="select firm_name,firm_code,firm_location from tbl_firms";
//echo $sql;
$result = mysqli_query($conn,$sql);
//echo $result;
?><tr bgcolor="#eeeeee"><th width=25%>Firm Name</th><th width=25%>Firm Code</th><th width=50%> Firm Location</th></tr><?php
while($rowOfEmployee=mysqli_fetch_array($result)){
?><tr><td><?php echo $rowOfEmployee['firm_name']?></td><td><?php echo $rowOfEmployee['firm_code']?></td><td><?php echo $rowOfEmployee['firm_location']?></td>
</tr><?php
}
?>
</table>
<?php
include('pdf_footer.php');
?>