You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
630 B

<?php
function mkheader($title, $bgcolor) {
?>
<!DOCTYPE html>
<html>
<head>
<title><?php echo $title; ?></title>
<style type='text/css'>
/*<![CDATA[*/
body {
color: #222;
background-color: #eee;
font-family: monospace;
}
pre {
border: 1px dashed #777;
color: #000;
background-color: <?php echo $bgcolor ?>;
padding: 5px;
margin: 10px;
}
.block {
display: block;
}
/*]]>*/
</style>
</head>
<?php
}
?>