HTML Kopf und Fuss

<?php
function HTML_Kopf($titel){
	print("<html>
		<head>
		<title>$titel</title>
		</head>
		<body>");
}
function HTML_Fuss(){
	print("</body>
		</html>");
}
 
HTML_Kopf('Testseite');
print("Bodytext");
HTML_Fuss();
?>