<?
include ( "gallery.php" );
$o_gallery = new gallery ();
$array[] = "Hi";
$array[] = "Hello";
$array[] = "Hey";
$array[] = "Ola";
$array[] = "Word Up";
//
// show a gallery with the above array and border = 1, 2 columns/line and "D1D1D2" as background color.
//
$o_gallery->show ( $array, 1, 2, "D1D1D2" );
//
// create an array with some images
//
$images[] = "<img src='images/box1.gif'>";
$images[] = "<img src='images/box2.gif'>";
$images[] = "<img src='images/box3.gif'>";
$images[] = "<img src='images/box4.gif'>";
$images[] = "<img src='images/box5.gif'>";
echo "<br>";
//
// show the images array with border = 1 and 3 columns/line
//
$o_gallery->show ( $images, 1, 3 );
?> |