pbmc-cmod/app/Views/result_report.php
2025-03-09 22:28:56 +07:00

24 lines
567 B
PHP

<?php
if ($site[0] == 'S' || $site[0] == 's' || $site[0] == 'X' || $site[0] == 'x') {
$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_new.css' />
<style>
#page {
background-image: url('<?=base_url();?>assets/img/<?=$image;?>');
}
</style>
</head>
<body style='-webkit-print-color-adjust:exact;'>
<?php echo $data; ?>
</body>
</html>