22 lines
709 B
PHP
22 lines
709 B
PHP
|
<?php include('pdf_header.php');
|
||
|
//include('includes/config/config.php');
|
||
|
//include('pop_up_top.php');
|
||
|
?>
|
||
|
<table border="1" width="100%">
|
||
|
<?php
|
||
|
$sql="select point_id,type_name,name,location,code from medicine_issue_point";
|
||
|
//echo $sql;
|
||
|
$result = mysqli_query($conn,$sql);
|
||
|
//echo $result;
|
||
|
?><tr bgcolor='#eeeeee'><th> Issue Type </th><th >Name</th><th >Location</th><th >Code</th></tr><?php
|
||
|
while($rowOfEmployee=mysqli_fetch_array($result)){
|
||
|
|
||
|
?><tr><td><?php echo $rowOfEmployee['type_name']?></td><td><?php echo $rowOfEmployee['name']?></td><td><?php echo $rowOfEmployee['location']?></td><td><?php echo $rowOfEmployee['code']?></td>
|
||
|
</tr><?php
|
||
|
|
||
|
}
|
||
|
?>
|
||
|
</table>
|
||
|
<?php
|
||
|
include('pdf_footer.php');
|
||
|
?>
|