Tips? PHP Html oder XXXYFsafl :) benutzen
keine frames, machs mit php und einer switch anweisung oder simpel mit if - hier ein beispiel mit einer if-verzweigung
<ul>
<li><a href="?inhalt=a">Inhalt A</a></li>
<li><a href="?inhalt=b">Inhalt B</a></li>
<li><a href="?inhalt=b">Inhalt C</a></li>
</ul>
<?php
if ($_GET['inhalt'] == 'b') {
include(inhalt_b.php);
} else if ($_GET['inhalt'] == 'c') {
include(inhalt_b.php);
} else {
include(inhalt_a.php);
}
?>