Fehler gefunden... Für weitere Nasen wie mich... hier die Lösung:
-->»» <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
-->»» "http://www.w3.org/TR/html4/loose.dtd">
<?
session_start();
if(!session_is_registered(myusername)){
$var_content = 'login/login.php';
} else {
if(!empty($var_content)) {
$var_content = 'login/vertriebspartner/';
}
}
?>
hierhin... mit den beiden zeilen und alles läuft..
-->»» <html>
<head>
<title>Verwaltungssoftware</title><style>
#testMenu a.testMenuItem {
cursor:pointer;
display:block;
margin-top: 0;
text-decoration: none;
outline:0;
clear: both;
}
</style>
<script type="text/javascript" src="../jquery-1.7.2.js"></script>
<script type="text/javascript">
jQuery().ready(function(){
$('#testMenu').accordion({
autoHeight: false,
navigation: true,
header: '.testMenuItem'
});
});
</script></head>
<body>
<div id="menu">
<?php include("../menu.php");?>
</div>
<div id="content">
<?php include("../" . $var_content);?>
</div>
</body>
</html>