Просмотр файла pages/me.php
<?
include_once('../system/config.php');
$sys['title'] = 'Обо мне';
include_once('../system/head.php');
$system = mysql_fetch_assoc(mysql_query("SELECT * FROM `system` WHERE `id` = '1'"));
echo '<div class="title">Обо мне</div>
<div class="content">
ICQ: '.$system['icq'].'<br/>
E-mail: '.$system['mail'].'<br/>
</div>';
include_once('../system/foot.php');
?>