Try this:
PHP Code:
<?php
require("./global.php");
$result = $DB_site->query("SELECT * FROM photos WHERE albumid=$album");
$counter = 0;
while($row = $DB_site->fetch_array($result))
{
$picid = $row["picid"];
$url = $row["url"];
$title = $row["title"];
if ($counter%3=="2") {
echo "</tr><tr>";
}
eval("\$gallerybits .= \"".gettemplate("gallery_bits")."\";");
$counter++;
}
eval("dooutput(\"".gettemplate("gallery")."\");");
?>