I have some problems to integrate my gallery into my php-based webside http://www.muellerlohs.de . By cklicking the menupoint 'Galerie' in my navigationbar, the gallery should be shown inside this side. It works little strange by opening the gallery as an own side
my hauptnavigation.php
Code
<tr>
<td><a class="hauptnavigation" href="index.php" title="">Home</a></td>
<td><a href="gallery1/index.php" title="Galerie" target="_parent" class="hauptnavigation">Galerie</a></td>
<td><a class="hauptnavigation" href="index.php?nav=motorrad&site=motor" title="Motorrad">Motorrad</a></td>
<td><a class="hauptnavigation" href="index.php?nav=rennrad&site=rennrad" title="Rennrad">Rennrad</a></td>
<td><a class="hauptnavigation" href="index.php?nav=suedtirol&site=intro5" title="Sà¼dtirol">Sà¼dtirol</a></td>
<td><a class="hauptnavigation" href="index.php?nav=sonstiges&site=sonstiges" title="Sonstiges">Sonstiges</a></td>
</tr>
</table>Code
<div class='container' align="center">
<table style="border: 1px solid #808080;" width="100%" height="100%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td style="margin: 3px 0 3px 0;" height="115" align="center" bgcolor="#990000"><img class="standard" style="border-left: 1px solid #808080; border-right: 1px solid #808080;" src="images/haeder.jpg" width="1050" height="175" border="0" alt="Mà¼llerLohs Photography"></td>
</tr>
<tr>
<td style="margin: 3px 0 3px 0; border-top: 1px solid #808080; border-bottom: 1px solid #808080;" height="30"><?php include ("hauptnavigation.php");?></td>
</tr>
<tr>
<td height="*">
<div class='nav' align="center">
<?php
switch ($nav) {
case "galerie": include ("gallery1/index.php"); break;
case "motorrad": include ("motor71001/index.php"); break;
case "rennrad": include ("rad1/index.php"); break;
case "suedtirol": include ("suedtirol/index.php"); break;
case "sonstiges": include ("sonstiges/index.php"); break;
//case "": include (""); break;
default: include ("intro.htm");
}
?></div></td>
</tr>