pbmc-cmod/app/Views/result_report.php

24 lines
525 B
PHP
Raw Normal View History

2025-02-06 10:17:20 +07:00
<?php
if ($site[0] == 'S' || $site[0] == 's') {
2025-02-06 10:17:20 +07:00
$image = 'sby_bcg.jpg';
} else {
$image = 'bali_bcg.jpg';
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<link rel='stylesheet' href='<?=base_url();?>assets/css/pdf.css' />
2025-02-06 10:17:20 +07:00
<style>
#page {
background-image: url('<?=base_url();?>assets/img/<?=$image;?>');
}
</style>
</head>
2024-12-07 09:25:13 +07:00
<body style='-webkit-print-color-adjust:exact;'>
<?php echo $data; ?>
</body>
</html>