pbmc-cmod/app/Views/result_report.php

25 lines
545 B
PHP
Raw Normal View History

2025-02-06 10:17:20 +07:00
<?php
$cityid = session()->get('usercityid');
if ($cityid == 2) {
$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>