1
0
mirror of https://github.com/php/web-php.git synced 2026-04-28 01:13:10 +02:00
Files
archived-web-php/oreilly99/photos.php3
T
1999-08-21 16:11:20 +00:00

16 lines
368 B
PHP

<?php require "header.inc"?>
<h1>Welcome to my Photo Album</h1>
<?
$fd = opendir(".");
while($entry = readdir($fd)) {
if(eregi("\.(jpg|gif|png)$",$entry)) {
echo "<a href=\"$entry\">";
echo "<img src=\"$entry\" align=middle border=0 height=80 width=100>";
echo "</a> $entry<br>\n";
}
}
closedir($fd);
?>
<?php require "footer.inc"?>