Johannes Zeller: Einfügen von Überschriften per Include

Beitrag lesen

Hallo Jeena,

Also ich mache das so:
// Das kommt in die Datei Impressum:
<?php
$title = 'Impressum';
include("head.php");

// Ganz viel Impressum

include("foot.php");
?>

IMHO eleganter:

<?php
  $title
  ob_start();
?>
<p>Ganz viel Impressum</p>
<?php
  $inhalt = ob_get_clean();
  include('template.php');
?>

Das kommt in die Datei template.php

...
<title><?php echo $title ?></title>
...
<body>
<?php echo $inhalt ?>
</body>
...

Schöne Grüße,

Johannes

--
ss:| zu:} ls:[ fo:} de:] va:} ch:) sh:( n4:| rl:( br:< js:| ie:{ fl:( mo:}
http://www.zeller-johannes.de/