Hi there.
I have a problem: I want send every image to every div and display.
My code:
all.php
<?
$files = glob("output/*.*");
for ($i=1; $i<count($files); $i++)
{
$num = $files[$i];
print $num."<br>";
echo '<img src="'.$num.'" alt="random image" />'."<br><br>";
}
?>
index.php
<img src="all.php" alt="image">
So, I don't know how to display multi image in index.php
Can you help me? thankz