Dönerman
Gesperrt
ich will die Bilder ausgeben, die im Ordner Upload sind!
Aber ich muss das PHP script in den Ordner speicher sonst gibt er mir nix aus!
Aber ich will das PHPscript nicht im Ordner haben, weil er sonst alles als Bilder ausgibt, und auch das PHPscript! also $stPath = 'upload/' aber das geht nicht dann bekomme ich eine Fehermeldung!
bitte um Rat!
Mfg Dönerman
Aber ich muss das PHP script in den Ordner speicher sonst gibt er mir nix aus!
PHP:
<?php
$stPath = './';
$hDir = opendir($stPath);
$spalte=0;
echo "<table cellspacing=\"3\" cellpadding=\"3\">";
echo "<tr>";
while($stFile = readdir($hDir))
{
if($stFile != '.' && $stFile != '..')
{
echo "<td width=\"50\" height=\"50\" valign=\"middle\" align=\"center\" style=\"BORDER:1px solid #CCCCCC;\">";
echo "<img src=\"".$stPath.$stFile."\" width='100' height='72' border='0'>";
echo "</td>";
$spalte++;
if($spalte >= 8)
{
echo "</tr><tr>";
$spalte = 0;
}
}
}
echo "</tr></table>";
closedir($hDir);
?>
Aber ich will das PHPscript nicht im Ordner haben, weil er sonst alles als Bilder ausgibt, und auch das PHPscript! also $stPath = 'upload/' aber das geht nicht dann bekomme ich eine Fehermeldung!
bitte um Rat!
Mfg Dönerman