So ich habe folgendes Problem
Auf dieserhttp://s2maps.no0ob.com/?action=list Seite möchte ich ein Verzeichnis ausgeben. Bei Klick auf die jeweiligen Links soll darunter ein Bild angezeigt werden.
Allerdings wird das Bild im Internet Explorer oft nicht angezeigt.
Bei den ersten 5-7 Bildern allerdings ja!
Was ist nun der Grund dafür?
Den Code von der Liste ist hier:
Code
if (isset($action) && $action == "list")
{
?>
<table cellpadding="0" cellspacing="0" style="width:500px; padding-left:15px;">
<?
$dir = opendir("./");
while ($file = readdir($dir))
{
if (@filetype($file) != "dir" && $file != "." && $file != "..")
{
$file = explode(".", $file);
if ($file[1] == "s2z")
{
?>
<tr>
<td>[url='javascript:tg('<?=$file[0]?>');']<?=$file[0]?>[/url]</td>
</tr>
<tr>
<td>
<div id="<?=$file[0]?>" style="display:none;">
<table cellpadding="0" cellspacing="0">
<tr>
<td style="padding-left:50px;">[img]<?=$file[0]?>_overhead.jpg[/img]" height="512" width="512"/></td>
</tr>
</table>
</div>
</td>
</tr>
<?
}
}
}
closedir($dir);
?>
</table>
<?
}
?>
Alles anzeigen
Was hab ich falsch gemacht, bzw. nicht bedacht?
PS: Das Javascript ist hierhttp://s2maps.no0ob.com/js.js einsehbar