homedatahome.php
![]() ![]() | |
//----------------------------------image find and count ----------------------------------//
$imgdir = "$name/thumbs"; // the directory, where your images are stored
$allowed_types = array('png','jpg','jpeg','gif'); // list of filetypes you want to show
$dimg = opendir($imgdir);
while($imgfile = readdir($dimg))
{
if(in_array(strtolower(substr($imgfile,-3)),$allowed_types))
{
$a_img[] = $imgfile;
//$a_img[] = array('name'=>$imgfile, 'date'=>/*get date of file*/);
sort($a_img);
//usort("name","date")
reset ($a_img);
}
}
$totimg = count($a_img); // total image number
if ($type == gallery) {
//-------------------------------------if page type = gallery -------------------------------//
?> | include ("$name/data$name.php"); ?>
|