A Simple Photo Album Application

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

This is what it looks like: Photo Album Example