So sieht meine Seite jetzt aus.
Und wenn ich Sie aufrufe, dann ist sie leer bzw weiß. Kommentieren ich mein error_reporting aus dann durchläuft er die Seite.
PHP-Code:
<html>
<head>
<title>
HWplz - Postalische Bereinigung Deutschland
</title>
<?php
session_start();
error_reporting(E_ALL);
if (isset ($_SESSION["user_id"]))
{
if (!isset($_GET['check'])) {
?>
<html>
<head>
<script type="text/javascript">
//<![CDATA[
top.location.href="App_HP_HWplz.php?check=1&sessionid=<?php echo $sessionid; ?>";
//]]>
</script>
<noscript>Bitte JavaScript aktivieren oder <a href="?check=0">hier</a> klicken.</noscript>
<?php
}
else {
if ($_GET["check"] == 1)
{
?>
<applet
codebase = "."
code = "hp_hwplz.App_HP_HWplz.class"
archive = "App_HP_HWplz.jar"
name = "HWplzApplet"
width = "730"
height = "560"
hspace = "0"
vspace = "0"
align = "left">
<param name="sid" value="<?php echo $_SESSION["user_id"]?>">
</applet>
<?php
}
else
{
echo "Leider ist auf Ihrem Rechner kein javascript installiert.";
}
}
}
?>
</head>
<body>
</body>
</html>
Kommentar