Bilder Tabelle

paini2008

Gesperrt
hallo ich habe eine Bilder aus gaben mit php sie gibt 4 bilder pro zeile aus das hab ich auch schon. jetzt will ich jedoch unter jedem bild den dazu gehörigen bilder name anzeigen lassen.
Ich hoffe ihr könnt mir helfen.!

hier mal der aktuelle script
PHP:
<?php
include "titel.php";
?> 
<body bgcolor="#6cb027">
<table width="100%">
<tr>
<td colspan="5"><h1 id="line"><?php echo "$titel"; ?></h1></td>
</tr>
<tr>
<?php
$ordner = "images/";
$handle = opendir($ordner);
$i=0;
    while ($file = readdir ($handle))
        if ($i<=3){
        if($file != "." && $file != "..") {
            if(is_dir($ordner."/".$file)) {
                echo "/".$file."<br/>";
            } else {
                $compl = $ordner."/".$file;
                $werte = getimagesize("$compl");
                $pixel=40;
                $hoehe=$werte[1]+$pixel;
                echo "<td align=center><img src=\"".$compl."\" ></a></td>";
                $i++;
            }
    }
    } else { echo "<tr></tr>";$i=0; }
closedir($handle);
?>
</table>
</body>


Mfg Paini2008
 
Steht der Dateiname nicht in $file ?

Teste das mal:
PHP:
echo "<td align=center><img src=\"".$compl."\" ></a><br />".$file."</td>";
 
ich habs jetzt mal so eingefügt passiert aber iwie nichts

<?php
include "titel.php";
?>
<body bgcolor="#6cb027">
<table width="100%">
<tr>
<td colspan="5"><h1 id="line"><?php echo "$titel"; ?></h1></td>
<td align=center><img src=\"".$compl."\" ></a><br />".$file."</td>
</tr>
<tr>
<?php
$ordner = "images/";
$handle = opendir($ordner);
$i=0;
while ($file = readdir ($handle))
if ($i<=3){
if($file != "." && $file != "..") {
if(is_dir($ordner."/".$file)) {
echo "/".$file."<br/>";
} else {
$compl = $ordner."/".$file;
$werte = getimagesize("$compl");
$pixel=40;
$hoehe=$werte[1]+$pixel;
echo "<td align=center><img src=\"".$compl."\" ></a></td>";
$i++;
}
}
} else { echo "<tr></tr>";$i=0; }
closedir($handle);
?>
</table>
</body>
 
PHP:
<?php
include "titel.php";
?> 
<body bgcolor="#6cb027">
<table width="100%">
<tr>
<td colspan="5"><h1 id="line"><?php echo "$titel"; ?></h1></td>
</tr>
<tr>
<?php
$ordner = "http://www.tutorials.de/forum/images/";
$handle = opendir($ordner);
$i=0;
    while ($file = readdir ($handle))
        if ($i<=3){
        if($file != "." && $file != "..") {
            if(is_dir($ordner."/".$file)) {
                echo "/".$file."<br/>";
            } else {
                $compl = $ordner."/".$file;
                $werte = getimagesize("$compl");
                $pixel=40;
                $hoehe=$werte[1]+$pixel;

                // HIER ;)

                echo "<td align=center><img src=\"".$compl."\" ></a><br />".$file."</td>";  
                $i++;
            }
    }
    } else { echo "<tr></tr>";$i=0; }
closedir($handle);
?>
</table>
</body>
 
Zurück