User Tools

Site Tools


kurs:php9.5

HTML Kopf und Fuss

mit optionalen Parametern

function HTML_Kopf($titel='Titel', $farbe='ffffff'){
	print("<html><head>
		<title>$titel</title>
		</head>
		<body bgcolor='#$farbe'>");
}
function HTML_Fuss(){
	print("</body>
		</html>");
}
HTML_Kopf('Testseite','ccFFcc');
print("Bodytext");
HTML_Fuss();
?>
kurs/php9.5.txt · Last modified: 2014/09/10 21:22 (external edit)