Photos
'43',
'circuit-1' => '77',
'starry-night' => '36',
'random' => '73',
'grind' => '2',
'circuit-2' => '36',
'shoot' => '35');
foreach ($albums as $name => $amount)
{
echo "
{$name}";
echo "";
$i = 0;
while ( $i <= $amount)
{
echo "-

";
$i++;
}
echo "
";
}
?>