Nieuw lid |
|
Hoi!
Ik ben bezig met een project waarbij er plaatjes in een tabel worden geladen uit een map m.b.v. php!
Dit lukt allemaal goed en aardig! maar nu wil ik dat hij de naam van het bestand onder de foto laat zien.
<?php
echo '
<table width="100%"cellspacing="0" cellpadding="0">
<tr>
<td>
<table cellspacing="0" cellpadding="5" width="100%">';
$image_types = array("jpg","gif","bmp","png","jpeg");
$plaatjes_reeks = "";
$mapnaam = "/fotos/groupdahlias/boldahlias";
$plaatjenaam = $_FILES["image"]["name"];
if ( ereg('..',$mapnaam) || ereg('//',$mapnaam) ){
$mapnaam = "/fotos/groupdahlias/boldahlias";
}
$map = opendir(".{$mapnaam}");
$count = 0;
while (false!==($bestand = readdir($map))) {
if ($bestand != "." && $bestand != "..") {
$ext = explode('.',$bestand);
$extl = sizeof($ext) - 1;
$ext = strtolower($ext[$extl]);
if ( in_array($ext,$image_types) ){
if($count%2 == 0) {
$plaatjes_reeks .= '</tr><tr>';
}
$plaatjes_reeks .= "<td><img src=\"fotos/groupdahlias/boldahlias/" . $bestand . "\" /></td>";
$count++;
}
}
}
if ( $plaatjes_reeks != "" ){
echo ($plaatjes_reeks);
}
closedir($map);
echo '
</table>
</td>
</tr>
</table>';
?>
<?php <table width="100%"cellspacing="0" cellpadding="0"> <tr> <td> <table cellspacing="0" cellpadding="5" width="100%">'; $image_types = array("jpg","gif","bmp","png","jpeg"); $plaatjes_reeks = ""; $mapnaam = "/fotos/groupdahlias/boldahlias"; $plaatjenaam = $_FILES["image"]["name"]; if ( ereg('..',$mapnaam) || ereg('//',$mapnaam) ){ $mapnaam = "/fotos/groupdahlias/boldahlias"; } $count = 0; while (false!==($bestand = readdir($map))) { if ($bestand != "." && $bestand != "..") { if($count%2 == 0) { $plaatjes_reeks .= '</tr><tr>'; } $plaatjes_reeks .= "<td><img src=\"fotos/groupdahlias/boldahlias/" . $bestand . "\" /></td>"; $count++; } } } if ( $plaatjes_reeks != "" ){ } </table> </td> </tr> </table>'; ?>
dit is wat ik tot nu toe heb...
Kan iemand me hiermee helpen? zit nu al een tijdje te klooien maar kom niet echt verder:p
|