Hallo, es geht mir um die Anzeige der jpg's in zeile 29 (<td><img border='0' scr='tumbs/$thumb[0].JPG'></td>)
Diese werden nicht angezeigt.
Kommt immer überall unbekannt siehe http://123fun.de/adult/funvideos/index.php
Sieht da zufälklig jemand nen Fehler im Quellcode?
Diese werden nicht angezeigt.
Kommt immer überall unbekannt siehe http://123fun.de/adult/funvideos/index.php
Sieht da zufälklig jemand nen Fehler im Quellcode?
PHP Code:
<?php
$path = "videos/";
$arr = array();
function sortdir ($a, $b)
{
return $a[1] < $b[1];
}
$dir = opendir($path);
while (($f = readdir($dir)) !== false)
{
if(substr($f,0,1) != "." && $f != "qtofm.php" && $f != "foldericon.gif" && $f != "arrowicon.gif")
{
$arr[] = array($f, filemtime($path."/".$f), filesize($path."/".$f));
}
}
closedir($dir);
usort($arr, "sortdir");
print "<table border='1' cellspacing='0' cellpadding='5'>";
print "<tr><td> </td><td>Dateiname</td><td>Online seit</td><td>Größe</td></tr>";
foreach ($arr as $v){
$thumb = explode(".", $v[0]);
$kb = explode(".", $v[2]/1024);
print "<tr>
<td><img border='0' scr='tumbs/$thumb[0].JPG'></td>
<td>$v[0]</td>
<td>".date("d.m.y H:i", $v[1])."</td>
<td>$kb[0] KB</td></tr>";
}
print "</table>";
?>
Comment