24 lines
571 B
PHP
24 lines
571 B
PHP
<?php
|
|
if ($site[0] == 'S' || $site[0] == 's' || $site[0] == 'X' || $site[0] == 'x') {
|
|
$image = 'sby_bcg_rev.png';
|
|
} else {
|
|
$image = 'bali_bcg.png';
|
|
}
|
|
?>
|
|
<!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>
|