Hallo, ich habe auf meiner homepage http://saschamr.sa.ohost.de unter dem Link "Pokal" eine Seite eingerichtet, welche in index.php includet wird. Dies klappt auch, nur wenn ich dann in der includeten, geöffneten pokal.php einen Link anklicke, lande ich wieder auf meiner Homepage-Startseite. Es wird als die "main.php" geöffnet.
Habe hier mal das Script angehängt und hoffe das mir geholfen werden kann.
Gruß
Sascha
Habe hier mal das Script angehängt und hoffe das mir geholfen werden kann.
Gruß
Sascha
PHP-Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
#Layer9 {
position:absolute;
width:181px;
height:351px;
z-index:1;
overflow: auto;
visibility: visible;
left: 14px;
top: 19px;
clip: rect(auto,auto,auto,1);
}
#Layer10 {
position:absolute;
width:352px;
height:816px;
z-index:2;
visibility: visible;
top: 19px;
left: 201px;
clip: rect(auto,auto,auto,200);
}
</style>
</head>
<table width="547" border="0" scrolling="no">
<tr align="left" valign="top">
<td height="477"><div id="Layer9"><img src="pics/pokal.png" width="180" height="315" border="0" usemap="#Map" />
<map name="Map" id="Map">
<area shape="rect" coords="25,88,144,114" href="index.php?go=kckreis0607" />
<area shape="rect" coords="24,121,165,149" href="index.php?go=kcup0607" />
<area shape="rect" coords="24,152,143,180" href="index.php?go=kcup" />
<area shape="rect" coords="27,183,144,202" href="index.php?go=dfb_pokal" />
</map>
</div> <div id="Layer10"><?php
if (isset($_GET['go']))
{
switch($_GET['go'])
{
case 'kckreis0607': include('kckreis0607.php');
break;
case 'kcup0607': include('kcup0607.php');
break;
case 'kcup': include('kcup0506.php');
break;
case 'dfb_pokal': include('dfb_pokal.php');
break;
default: include('kckreis0607.php');
}
}
else
{
include('kckreis0607.php');
}
?>
</div></td>
</tr>
</table>
Kommentar