Spaces:
Running
Running
File size: 214 Bytes
6420441 |
1 2 3 4 5 6 7 8 9 |
<?php
include 'gallery_functions.php';
$imageDirectory = 'images/';
$imageOrder = 'asc';
$images = getImages($imageDirectory, $imageOrder); // 'asc' or 'desc'
include 'gallery_content.php';
?>
|