21 lines
763 B
PHP
21 lines
763 B
PHP
<?php
|
|
require("connect_hosxp.php");
|
|
|
|
$ln1 = base64_decode($_GET['ln']);
|
|
|
|
$sqlLn = "select image1,image2,image3 from lab_order_image where lab_order_number='$ln1' ";
|
|
$resultLn = mysqli_query($conn1, $sqlLn);
|
|
$rowLn = mysqli_fetch_array($resultLn);
|
|
?>
|
|
|
|
<p align="justify">
|
|
<?php if ($rowLn['image1'] != '') {
|
|
echo '<img src="data:image/jpeg;base64,' . base64_encode($rowLn['image1']) . '" width="50%"/> ';
|
|
} ?><br />
|
|
<?php if ($rowLn['image2'] != '') {
|
|
echo '<img src="data:image/jpeg;base64,' . base64_encode($rowLn['image2']) . '" width="50%"/> ';
|
|
} ?><br />
|
|
<?php if ($rowLn['image3'] != '') {
|
|
echo '<img src="data:image/jpeg;base64,' . base64_encode($rowLn['image3']) . '" width="50%"/> ';
|
|
} ?><br />
|
|
</p>
|