<?php
include("./class.image.php") ;
$image = new AffichImage() ;
//define the width of the thumbnail
$lon = 100 ;
//define the height of the thumbnail
$lar = 100 ;
//define the number of thumbnails per line
$lin = 10 ;
//define the directory where to look for images
$dir = "./img" ;
$image->showDir($dir, -1, $lar, $lon, $lin);
?>
|