<?php
 
    require_once("phpPhotoGallery.php");
 
 
    $gal = new phpPhotoGallery(true,0,200,1,50);
 
 
    $gal->addDirPhotoNames("image","WOW Ferrari!");
 
    $gal->addDirPhotoNames("image2/a");
 
    $gal->addDirPhotoNames("image2");
 
 
    //$gal->setShadowEffect(false);
 
    //$gal->setShowCaption(false);
 
 
    $gal->showGallery();
 
    $gal->showInTable(3);
 
    $gal->printSource();
 
?>
 
 |