Files
Archive/kepler/Kepler-www/c_images/stickers/index.php

13 lines
260 B
PHP
Raw Normal View History

2025-12-09 06:52:43 +00:00
<?php
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle)))
{
if ($file != "." && $file != "..")
{
$thelist .= '<img src="'.$file.'">';
}
}
closedir($handle);
}
?>
<P><?=$thelist?></p>