Hey,
also ich hab hier ein Script das aus einem Ordner Bilder ausliest und auflistet.
Allerdings macht der das ganze in einer Zeile...
Weiß einer wie ich das ganze so umschreibe das es nach allen 4 Bildern ne neue Zeile anfängt.
hier das Problem: http://vbboard.de/templates.php
und hier der code:
Code
<?PHP
$pfad = './';
include ($pfad . 'include/global.php');
page_header('templates.html', $lang['templates'] );
$tpl_pfad = $pfad . 'images/templates/';
$verz = opendir($tpl_pfad);
$template_images = false;
while ($file = readdir($verz))
{
if (filetype($tpl_pfad . $file) != 'dir')
{
$string_eins = $file;
$string_zwei=".";
$stelle=strrpos($string_eins,$string_zwei);
$treffer=substr ($string_eins,0,$stelle);
$template->assign_block_vars('template_list', array(
'TEMPLATE' => $file,
'TEMPLATEONE' => $treffer,
));
}
}
$template->assign_vars(array(
'LANG_TEMPLATES' => $lang['templates'],
'LANG_TEMPLATES_TXT' => $lang['templats_txt'],
));
page_footer();
?>
Alles anzeigen
hofee jemand kann mir helfen.