считаю, что это будет соответствовать вашим потребностям.
<?php
$imgDir = 'im/';
$imgDir2 = 'out/';
$images = array();
// open a directory reader for the first directory
$dh = opendir($imgDir);
// read a single filename of this directory (stop loop if there are no more files)
while (false !== ($filename = readdir($dh)))
{
// ignore '.' and '..'
if($filename != '.' && $filename != '..')
{
// add the directory and filename to the images array
$images[] = $filename;
}
}
closedir($dh);
natsort($images);
// loop for every image
foreach($images as $image)
{
// for every img, echo a div-2-images-div-combination
echo '<div id="slideWrapper">';
echo '<img src="'.$imgDir . $image.'" width="1000" height="683" alt="'.$image.'" />';
echo '<img src="'.$imgDir2 . $image.'" width="1000" height="683" alt="'.$image.'" />';
echo '</div>';
}
?>
Я бы рекомендовал использовать одинарные кавычки, поскольку вам не нужно экранировать обычные кавычки, и это быстрее:)