Structure of the site
Posted: Sat Oct 21, 2006 11:32 am
Hello!
I wanna to ask You guys if I'm writing my site in good way
index.php:
ew. included file:
I wanna to ask You guys if I'm writing my site in good way
index.php:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Michael-Schenker.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250"/>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<?php
include('includes/header.php');
?>
<?php
include('includes/menu.php');
?>
<?php
include('includes/content.php');
?>
<?php
include './include.php';
?>
<?php
include('includes/footer.php');
?>ew. included file:
Code: Select all
<?php
echo "<div id=\"footer\"><p id=\"copy\">Copyright 2006 Michael-Schenker.com</p></div>\n";
echo "</div>\n";
echo "</div>\n";
echo "</body>\n";
echo "</html>\n";
?>