21.12.2006, 18:28
Hallo wollte mal fragen ob das möglich ist. Wenn ichs so mache kommt immer der Fehler
Security Violation
in einem frame funktionierts mit php hab ichs noch nicht hinbekommen vielleicht kann mir jemand helfen
Danke schonmal
Security Violation
in einem frame funktionierts mit php hab ichs noch nicht hinbekommen vielleicht kann mir jemand helfen
Danke schonmal
PHP-Code:
<head>
<style type="text/css">
<!--
.main {
width: 1024px;
background-color: #FFCC00;
background-attachment: scroll;
background-repeat: no-repeat;
background-position: center bottom;
margin-top: 10px;
margin-right: 400px;
margin-bottom: 10px;
margin-left: 130px;
border: 1px solid #000000;
padding-top: 0px;
padding-right: 5px;
padding-bottom: 5px;
padding-left: 5px;
height: auto;
}
#menu {
width: 120px;
height: 300px;
margin-right: auto;
border:1px solid black;
float: none;
left: auto;
margin-left: 0px;
background-color: #003399;
}
-->
</style>
</head>
<body bgcolor="#000000">
<p> </p>
<div class="main">
<?php
$site = $_GET['site'];
if(isset($site)) {
switch($site) {
case Forum:
include'mybb/index.php';
break;
case Bilder:
include 'indexgallerie.php';
break;
case Videos:
include 'videos.php';
break;
case Links:
include 'links und mehr.php';
break;
default:
include 'hintergrund.php';
break; }
}
else {
include 'hintergrund.php';
}
?>
</div>
<div class="menu">
<p style="float:left;"> </p>
<p style="float:left;"> </p>
<p style="float:left;"> </p>
<p style="float:left;"> </p>
<p style="float:left;"> </p>
<p style="float:left;"> </p>
<p id="menu" style="float:left;">
<a href="index.php?site=Hauptseite">Hauptseite</a><br>
<a href="index.php?site=Forum">Forum</a><br>
<a href="index.php?site=Bilder">Bilder</a><br>
<a href="index.php?site=Videos">Videos</a><br>
<a href="index.php?site=Links">Links</a><br>
</div>
</body>