Hi Jungs!
Ich hab diesen Code:
<html>
<?php
$section = array();
$section['Home'] = 'home.php';
$section['Concept'] = 'co_inhalt.php';
$section['info'] = 'info.php';
include 'header.html'; // doctype, <html> und das komplette <head>-element
include 'menu.html';
echo " <body class='body'>\n";
if (isset($_GET['section'], $section[$_GET['section']])) {
include $section[$_GET['section']];
} else {
include $section['Home'];
}
echo " </body>\n";
echo "</html>\n";
?>
Das Problem ist, ich möchte nicht, dass das include 'menu.html' neu geladen wird, weil sich dort ein Objekt befindet (Youtube Video) welches weiterlaufen soll...
Gruss
iKON