72 lines
2.2 KiB
PHP
72 lines
2.2 KiB
PHP
|
<?php include('pdf_header_reverse.php');
|
||
|
// include('includes/config/config.php');
|
||
|
// include('includes/functions.php')
|
||
|
//include('pop_up_top.php');
|
||
|
?>
|
||
|
<link href="includes/css-js/admin.css" rel="stylesheet" type="text/css" />
|
||
|
|
||
|
<table width="100%">
|
||
|
<tr>
|
||
|
<div style="font-size:12px">
|
||
|
<td width="25%" align="left"> Run Date :
|
||
|
<?php echo date("d-M-Y"); ?>
|
||
|
</td>
|
||
|
<td width="50%" align="center" style="font-size:40px"><strong>USERS LIST</strong></td>
|
||
|
<td width="25%" align="left"> User :
|
||
|
<?php echo $username ?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<table border="1" width="100%">
|
||
|
<?php
|
||
|
$sql="SELECT a.user_name,a.status, a.email, a.user_id, a.role_id, b.role_name, a.emp_id, e.emp_code, a.remarks,a.ohc_type FROM tbl_users a left join role_master b on a.role_id=b.role_id left join patient_master e on a.emp_id=e.id";
|
||
|
|
||
|
$result = mysqli_query($conn,$sql);
|
||
|
|
||
|
$count=0;
|
||
|
|
||
|
?>
|
||
|
<tr bgcolor="#eeeeee">
|
||
|
<th>Sr.</th>
|
||
|
<th>User ID</th>
|
||
|
<th>User</th>
|
||
|
<th>Emp ID</th>
|
||
|
<th>Employee Code</th>
|
||
|
<th>Email</th>
|
||
|
<th>User Role</th>
|
||
|
<th width="15%">OHC Type</th>
|
||
|
<th>Status</th>
|
||
|
</tr>
|
||
|
<?php
|
||
|
|
||
|
while($rowOfEmployee=mysqli_fetch_array($result)){
|
||
|
$ohc_type_names=getCommaSeperatedValuesForInClause("select ohc_type_name from ohc_type","ohc_type_id",$rowOfEmployee['ohc_type']);
|
||
|
// $ohc_type_names = getTableFieldValue('tbl_users','ohc_type_name','ohc_type_id',$rowOfEmployee['ohc_type']);
|
||
|
if($rowOfEmployee['status']=='1'){
|
||
|
$rowOfEmployee['status']="Active";
|
||
|
}else{
|
||
|
$rowOfEmployee['status']="Inactive";
|
||
|
}
|
||
|
$count=$count+1;
|
||
|
?>
|
||
|
<tr>
|
||
|
<td><?php echo $count?></td>
|
||
|
<td><?php echo $rowOfEmployee['user_id']?></td>
|
||
|
<td><?php echo $rowOfEmployee['user_name']?></td>
|
||
|
<td><?php echo $rowOfEmployee['emp_id']?></td>
|
||
|
<td><?php echo $rowOfEmployee['emp_code']?></td>
|
||
|
<td><?php echo $rowOfEmployee['email']?></td>
|
||
|
<td><?php echo $rowOfEmployee['role_name']?></td>
|
||
|
<td>
|
||
|
<?php echo $ohc_type_names ; ?>
|
||
|
</td>
|
||
|
<td><?php echo $rowOfEmployee['status']?></td>
|
||
|
</tr>
|
||
|
<?php
|
||
|
|
||
|
}
|
||
|
?>
|
||
|
</table>
|
||
|
<?php
|
||
|
include('pdf_footer.php');
|
||
|
?>
|