by functions I mean defining stuff using php:
PHP Code:
<?php
function head()
{
?>
<html>
<head>
<title>Title</title>
</head>
<body bgcolor="#cecece">
<?php
}
?>
and then to put it in the main site I just put:
PHP Code:
<?php
head();
?>
But there is more complex stuff on other pages.. liking viewing a complete story, which usings the post function eg: news.php?id=1 to view news story one...
I am just wondering how to get it to work thats all

hehe.