<html>
<head>
<title></title>
</head>
<link rel="stylesheet" type="text/css" href="main_gallery_style.css" />
<body>
<div align="center">
<table border="0" width="500" height="0" cellspacing="0" cellpadding="5">
<?php
include "gallery.inc.php";
$test = new gallery("test_gallery/");
$test->scan_main_gallery_folders();
//print "path:".$test->get_current_path()."<br>";
//print "gallery:".$test->get_main_gallery_count()."<br>";
$tr = 1;
for ($i=1; $i<$test->get_main_gallery_count()+1; $i++){
$test->scan_current_folder_pictures($i);
print '<td valign="top" align="center">'.$test->print_main_gallery_picture($i).'<br>';
print '<br><b>'.$test->print_main_gallery_comments($i).'</b><br>';
print 'Pics:('.$test->get_picture_count().')</td>';
$test->set_picture_count();
if ($tr == 3) {
print '<tr>';
$tr = 0;
}
$tr++;
}
?>
</table>
</div>
</body>
</html>



