Hallo,
ich habe hier eine kleine Noobilanten-Frage... wieso wird mir nicht der entsprechende Title ausgegeben?
index.php:
inhalt.php
ich habe hier eine kleine Noobilanten-Frage... wieso wird mir nicht der entsprechende Title ausgegeben?
index.php:
PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title><?php $title; ?></title>
</head>
<body>
...header text...
<a href="index.php?section=home"><b>home-link</b></a><br />
<a href="index.php?section=kontakt"><b>kontakt-link</b></a><br />
<a href="index.php?section=impressum"><b>impressum-link</b></a><br />
</body>
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$section = array();
$section['home'] = 'home.php';
$section['kontakt'] = 'kontakt.php';
$section['impressum'] = 'impressum.php';
echo " <body>\n";
if (isset($_GET['section'], $section[$_GET['section']])) {
include $section[$_GET['section']];
} else {
include $section['home'];
}
echo "</body>\n";
echo "</html>\n";
?>
inhalt.php
PHP:
<?
$title = "Seitentitel bla und blub Herzlich willkommen";
?>
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText