48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php
|
|
include('pdf_header.php');
|
|
?>
|
|
<html>
|
|
<link href="includes/css-js/admin.css" rel="stylesheet" type="text/css" />
|
|
<style type="text/css">
|
|
<!--
|
|
.style1 {font-size: small}
|
|
-->
|
|
</style>
|
|
<body>
|
|
<center>
|
|
<p><b><font size="15px">Tender Class Report </font></b></p>
|
|
</center>
|
|
|
|
<table width="100%" border="1" cellspacing="1" cellpadding="1" style="font:Arial, Helvetica, sans-serif; font-size:10px;">
|
|
|
|
<tr class="bg2">
|
|
<th width="8%" align="center" ><strong>S.No.</strong></th>
|
|
<th width="30%" align="center"><strong>Class Name</strong></th>
|
|
<th width="20%" align="center"><strong>Short Code</strong></th>
|
|
<th width="38%" align="center"><strong>Remarks</strong></th>
|
|
</tr>
|
|
<?php
|
|
$count=1;
|
|
$sql="SELECT * FROM tbl_mst_class ORDER BY class_id";
|
|
$result = mysqli_query($conn,$sql);
|
|
while($row=@mysqli_fetch_array($result))
|
|
{
|
|
extract($row);
|
|
?>
|
|
<tr class="bdr_td">
|
|
<td align="center" class="bdr_td"><?php echo $count?></td>
|
|
<td align="center" class="bdr_td"><?php echo $class_name?></td>
|
|
<td align="center" class="bdr_td"><?php echo $class_shortcode?></td>
|
|
<td align="center" class="bdr_td"><?php echo $remarks?></td>
|
|
</tr>
|
|
<?php
|
|
$count++;
|
|
}
|
|
?>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|
|
<?php
|
|
include('pdf_footer.php');
|
|
?>
|