<?php
# Used for setting captcha key, you can remove this
# block of code if you are not using any captcha with
# this program.
function captchaKey($key)
{
$search = array('/0/','/1/','/o/i','/i/i','/l/i');
$replacements = array('2','4','6','8','a');
return preg_replace($search, $replacements, $key);
}
$key = captchaKey(substr(md5(time()), 0, 4));
setcookie("UID", $key, time()+(60*60*24*30), "/");
# END setting captcha key ###################
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php print $title ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
</head>
<body>
<h2><?php print $title ?></h2>