Курсовая работа: Создание сайта Библиотека онлайн
$this -> DisplayFooter();
echo "</body>\n</html>\n";
}
//-----------------------------------------------------------
function DisplayTitle()
{
echo "<title> $this->title </title>\n";
}
//-----------------------------------------------------------
function DisplayKeywords()
{
//echo"<META name=\"keywords\" content=\"$this->keywords\">"
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1251\">\n";
}
//-----------------------------------------------------------
function DisplayStyles()
{
}
//-----------------------------------------------------------
function IsURLCurrentPage($url)
{
if (strpos($GLOBALS[SCRIPT_NAME], $url)==false)
{
return false;
}
else {
return true;
}
}