예제 #1
0
echo SITE_PATH;
?>
images/favicon.bmp"> 
		<link rel="icon" type="image/gif" href="<?php 
echo SITE_PATH;
?>
images/favicon.bmp"> 

		<link rel="alternate" type="application/rss+xml" title="News Updates" href="<?php 
echo SITE_PATH;
?>
feed_rss.php" /> 
		
		<title><?php 
if (isset($_GET['p'])) {
    $request->single('SELECT * FROM Articles WHERE ID=\'' . intval($_GET['p']) . '\' LIMIT 1');
    echo $request->toShow[0]->title . ' | ';
}
if (isset($_GET['news'])) {
    echo 'Last News | ';
} elseif (isset($_GET['search'])) {
    echo 'Internal Search Engine: ' . $_GET['search'] . ' | ';
} elseif (isset($_GET['cat'])) {
    echo $_GET['cat'] . ' Category | ';
} elseif (isset($_GET['all'])) {
    echo 'Articles Archive | ';
}
echo TITLE;
?>
</title>
	</head>