<?php
require('framework/session.php');
require('framework/work/start.php');
require('framework/ready.php');
?>
<!DOCTYPE HTML>
<html>
<head>
<title><?php echo $title; ?></title>
<meta charset="ISO-8859-1" />
<meta name="robots" content="INDEX,FOLLOW" />
<link href="style/css/design.css" rel="stylesheet" />
<link href="style/images/favicon.ico" rel="shortcut icon" />
<noscript><span class="noscript"><?php echo $lang['no_java']; ?></span></noscript>
</head>
<body>
<?php
while($row_who = mysql_fetch_assoc($result_who)) {
echo '<p><img src="style/images/online.png" border="0" alt="Online"> ' . htmlentities($row_who['name'], ENT_QUOTES) . '</p>';
}
?>
</body>
</html>
<?php include_once('framework/work/end.php'); ?>