Screenshots
gallery($screenshots,3, 371, 193);?>
function gallery($screenshots, $numItemsPerRow, $height, $width)
{
?>
$index = 0;
foreach($screenshots as $file => $label)
{
if($index % $numItemsPerRow == 0) echo "\n";
if($label == '')
{
?> | |
}
else
{
?>

|
}
if($index % $numItemsPerRow == ($numItemsPerRow-1))echo "
\n";
$index++;
}
$w = 100 / $numItemsPerRow . '%';
for($i = $index % $numItemsPerRow; $i < $numItemsPerRow; $i++)
echo " | ";
if($index % $numItemsPerRow != 0)
echo "";
?>
}?>