22 lines
910 B
PHP
22 lines
910 B
PHP
<?php
|
|
include_once('includes/config/config.php');
|
|
include_once('includes/functions.php');
|
|
$query_for_company = "select company_name, company_logo, image_type,address from company_profile ";
|
|
//echo $query_for_company;
|
|
$result_for_company = @mysqli_query($conn, $query_for_company);
|
|
if ($row_for_company = @mysqli_fetch_array($result_for_company)) {
|
|
@extract($row_for_company);
|
|
}
|
|
|
|
?>
|
|
|
|
<table width="100%">
|
|
<tr>
|
|
<td colspan="3" width="100%" style="font-size: 15px" align="center"><b><?php echo $row_for_company['company_name'] ?>,<?php echo $row_for_company['address'] ?>,<?php echo getTableFieldValue('ohc_type', 'ohc_type_name', 'ohc_type_id', $_SESSION['current_ohcttype']) ?></b></td>
|
|
</tr>
|
|
<!-- <tr>
|
|
<td width="25%" align="left"> Run Date : <?php echo date("d-M-Y"); ?>
|
|
<td width="50%"></td>
|
|
<td width="25%" align="left"> User : <?php echo $username ?></td>
|
|
</tr> -->
|
|
</table>
|