Hab ein Problem mit dem IE!
Meine Seite ist: http://songlyrics.funpic.de/linkinpark/
Mit PHP lade ich in eine Tabellenzelle eine HTML-Seite. Mit dem Firefox funktioniert das ganz prächtig, doch der IE zeigt da überhaupt nichts an.
Am Anfang hat es sogar geklappt, danach hab ich (glaub ich) nur HTML- und CSS-Code verändert (deswegen ist das topic nun im HTML-Forum).
Kann mir jemand helfen?
Hier die index.php:
Und hier die CSS-Formate:
Ich danke euch!
Mod-Edit: Code-Tags hinzugefügt - Könntet ihr bitte vor dem Posten mal lesen? (XraYSoLo)
Meine Seite ist: http://songlyrics.funpic.de/linkinpark/
Mit PHP lade ich in eine Tabellenzelle eine HTML-Seite. Mit dem Firefox funktioniert das ganz prächtig, doch der IE zeigt da überhaupt nichts an.
Am Anfang hat es sogar geklappt, danach hab ich (glaub ich) nur HTML- und CSS-Code verändert (deswegen ist das topic nun im HTML-Forum).
Kann mir jemand helfen?
Hier die index.php:
PHP:
<html>
<head>
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Type" content="text/html;>
<?php
if ($page=="") $page="start.htm";?>
</head>
<body bgcolor="#000000">
<table border="0" width="99%" bordercolor="#8B805E">
<tr>
<td width="100%"><img border="0" src="top.jpg" width="969" height="208" align="left" alt="LINKINPARKSONGS.de.vu" ></td>
</tr>
</table>
<p class="google" align="center" style="word-spacing: 0; margin-top: 0; margin-bottom: 0">
<script type="text/javascript"><!-- #Google Adsense ^^
google_ad_client = "pub-1337793258253832";
google_ad_width = 728;
google_ad_height = 15;
google_ad_format = "728x15_0ads_al";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_bg = "000000";
google_color_link = "8B805E";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>
<table border="0" width="99%">
<tr>
<td width="18%" bgcolor="#8B805E" valign="top">
<img src="hybrid-theory.jpg" alt="Hybrid Theory" title="Hybrid Theory war das erste Album von Linkin Park">
<p class="navi"> #Linke Spalte für Naviagtion (wird angezeigt)
<a href="index.php?page=papercut.htm"> Papercut </a>
<br>
<a href="index.php?page=one-step-closer.htm"> One Step Closer </a>
<br>
<a href="index.php?page=with-you.htm"> With you </a>
<br>
<a href="index.php?page=points-of-authority.htm"> Points of Authority </a>
<br>
<a href="index.php?page=crawling.htm"> Crawling </a>
<br>
<a href="index.php?page=runaway.htm"> Runaway </a>
<br>
<a href="index.php?page=by-myself.htm"> By Myself </a>
<br>
<a href="index.php?page=in-the-end.htm"> In the End </a>
<br>
<a href="index.php?page=a-place-for-my-head.htm"> A Place For My Head </a>
<br>
<a href="index.php?page=forgotten.htm"> Forgotten </a>
<br>
<a href="index.php?page=a-cure-for-the-itch.htm"> A Cure For The Itch </a>
<br>
<a href="index.php?page=pushing-me-away.htm"> Pushing Me Away </a></p>
<img src="meteora.jpg" alt="Meteora" title="Meteora ist das dritte offizielle Linkinparkalbum">
<p class="navi">
<a href="index.php?page=dont-stay.htm"> Don't stay </a>
<br>
<a href="index.php?page=somewhere-i-belong.htm"> Somewhere I belong </a>
<br>
<a href="index.php?page=lying-from-you.htm">Lying from you</a>
<br>
<a href="index.php?page=hit-the-floor.htm"> Hit the floor</a>
<br>
<a href="index.php?page=easier-to-run.htm"> Easier to run</a>
<br>
<a href="index.php?page=faint.htm">Faint</a>
<br>
<a href="index.php?page=figure.09.htm">Figure.09</a>
<br>
<a href="index.php?page=breaking-the-habit.htm">Breaking the Habit</a>
<br>
From the Inside
<br>
Nobody's Listening
<br>
<a href="index.php?page=numb.htm">Numb</a>
<br>
</p>
</td>
<td width="1%">
</td>
<td width="81%" bgcolor="#35301E">
#Hier die große, rechte Spalte für den Inhalt. Im IE wird die Seite, die reingeladen wird nicht angezeigt (außer im Quellcode!)!
<?php
$fd = fopen($page, "r");
while (!feof($fd)) {
echo fgets($fd, 4096);
}
fclose ($fd);
?>
</td>
</tr>
</table>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-671926-1";
urchinTracker();
</script>
</body>
</html>
Und hier die CSS-Formate:
HTML:
h2,h3,h4,p,ul,ol,li,div,td,th,address,blockquote,nobr,b,i { font-family:Verdana; font-size:10pt; color: #ffffff}
h1 { font-family:Impact,Georgia; font-size:14pt; color: #ffffff }
h1,h2,h3,h4,p,ul,ol,li,div,td,th,address,blockquote,nobr,b,i { text-align:left; margin-left:1.0cm;}
a:link { color:#ffffff }
a:visited {color:#ffffff }
a:hover { color:#731b03 }
a:active { color:#731b03 }
.navi { font-size:8pt; margin-left:0.3cm;}
.google {text-align:center;}
body { background-color:#000000}
Ich danke euch!
Mod-Edit: Code-Tags hinzugefügt - Könntet ihr bitte vor dem Posten mal lesen? (XraYSoLo)