Habe folgendes Problem, durch die massive verschachtelung der Tabellen zeigt mir der IE nur noch eine weisse Seite an. mit dem Mozilla funktionierts jedoch ohne probleme...
Der Quellcode wird auch mit dem IE korrekt angezeigt, jedoch nicht dargestellt :-S Könnte mir jemand helfen ?
http://www.md-press.com/test.php?cat...son+3+-+CODE+1
CODE von der PHP datei her:
Ich weis nicht mehr weiter :-(
Der Quellcode wird auch mit dem IE korrekt angezeigt, jedoch nicht dargestellt :-S Könnte mir jemand helfen ?
http://www.md-press.com/test.php?cat...son+3+-+CODE+1
CODE von der PHP datei her:
PHP-Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>md-press online</title>
<link href="md-press.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
background-color : #FFFFFF;
}
.Stil1 { color: #FF9900;
font-family: Arial, Helvetica, sans-serif;
}
.Stil4 {font-size: 14px}
.Stil5 {
color: #000099;
font-weight: bold;
}
</style>
</head>
<?php
Echo"<html>";
Echo"<body topmargin=0>
<table border=0 align=center width=100%>
<tr>
<td>
<table border=0 align=center width=880 cellpadding=0 cellspacing=0 style=\"background-image:url(Bilder/linie.jpg)\">
<tr height=125>
<td width=880 colspan=3><table><tr height=130><td width=325 align=center valign=middle><img src=\"Bilder/logo.gif\"></td>
<td align=center width=555 valign=middle>\n";
Navi();
echo" </td></tr></table></td>
</tr>
<tr>
<td width=175 valign=top>\n";
Reviewhead();
include("Seiten/dvdnavineu.php");
Reviewfooter();
Echo" </td>";
if ($_GET['cat']=="testberichte" && !isset($_GET['titel'])) {
Echo" <td width=690 border=0 valign=top>\n";
include("Seiten/DVD/Tests/testberichteneu.php");
}
else if ($_GET['cat']=='testberichte' && isset($_GET['titel'])) {
Echo" <td width=690 border=0 valign=top>\n";
include("Seiten/DVD/Tests/testberichteneu.php");
}
else if (!isset($_GET['cat']) || $_GET['cat']=='news') {
Echo" <td width=690 border=0 valign=top>\n";
include("php/newsneu.php");
}
Echo" </td><td width=15> </td>
</tr><tr height=25><td> </td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>";
function Navi()
{
echo"<iframe frameborder=0 src=\"navinew/navigation.htm\" width=470 height=66 scrolling=no>Navigations menü kann nich gezeigt werden </iframe>";
}
function Reviewhead()
{
Echo"
<table width=142px align=center border=0 cellpadding=0 cellspacing=0>
<tr>
<td height=30 background=\"Bilder/rewtablehead.gif\">
</td>
</tr>
<tr>
<td height=14 background=\"Bilder/rewtableupper.jpg\">
</td>
</tr>
<tr>
<td background=\"Bilder/rewtablebg.jpg\"><div>\n";
}
function Reviewfooter()
{
Echo"
</div></td>
</tr>
<tr>
<td height=14>
<img src=\"Bilder/rewtablelower.jpg\">
</td>
</tr>
</table>\n";
}
?>
Kommentar