csrtechnew.ohctech.in/pdf_qualification_master.php
2025-04-14 13:28:09 +05:30

49 lines
1.3 KiB
PHP

<?php include('pdf_header.php');
//include('includes/config/config.php');
//include('pop_up_top.php');
?>
<html>
<link href="includes/css-js/admin.css" rel="stylesheet" type="text/css" />
<body>
<table width="100%">
<tr>
<div style="font-size:12px">
<td width="35%" align="left"> Run Date :
<?php echo date("d-M-Y"); ?>
</td>
<td width="50%" align="center" style="font-size:10px"><strong>QUALIFICATION MASTER LISTS</strong></td>
<td width="25%" align="right"style="margin-left:10px;"> User :
<?php echo $username ?>
</td>
</tr>
</table>
<table class="col-sm-offset-5" border="1" width="100%" font-size="15px">
<?php
$sql = "SELECT * FROM qualification"; //echo $sql;
$result = mysqli_query($conn,$sql);
//echo $result;
?><tr bgcolor='#eeeeee'>
<th width="30%" ;>Qualification</th>
<th width="30%" ;>Code</th>
<th width="30%" ;>Q-seq</th>
</tr> <?php
while($rowOfEmployee=mysqli_fetch_array($result)){
?><tr>
<td><?php echo $rowOfEmployee['qualification'] ?></td>
<td><?php echo $rowOfEmployee['code'] ?></td>
<td><?php echo $rowOfEmployee['q_seq'] ?></td>
</tr><?php
}
?>
</table>
</body>
</html>
<?php
include('pdf_footer.php');
?>