<?php // Read the files from the saved images folder $dir = new DirectoryIterator("saved"); foreach ($dir as $fileinfo) { if (!$fileinfo->isDot() && $fileinfo->isFile()) { echo '<img style="margin: 5px; vertical-align: middle;" src="saved/' . $fileinfo->getFilename() . '" />'; } } ?>
ставил и между {php}{/php},{literal}{/literal}, и где foreach ($dir as $fileinfo) менял на {foreach ($dir as $fileinfo)}{/foresh}, никак не смог.
помогите пожайлуста.