|
for($i = 1;$i <= $PICTURE_ROWS; $i++){
$currentRow = $i + (($page - 1) * $PICTURE_ROWS);
if($currentRow != $totalRows){
echo '';
for($j = 1;$j <= $PICTURES_PER_ROW; $j++){
if($currentPicture++ > $NUMBER_OF_PICTURES){
echo ' | ';
}else{
echo ' | ';
}
if($j < $PICTURES_PER_ROW){
echo ' | ';
}
}
echo ' ';
if((($i < $PICTURE_ROWS) && ($currentRow != $totalRows))){
echo ' | ';
}
}
}
?>
|
|