Our Work
View our complete line of products and services. We specialize in a wide range of Kitchen & Vanity Countertops, Bath & Shower Surrounds, Custom Built-Cabinetry, Tile Installation, as well as Outdoor Stone and 3-D Conceptual Design.
$url_folders = basename(dirname(__FILE__));
$folder = "../$url_folders/";
//echo $url_folder;
// open specified directory
$dirHandles = opendir($folder);
while ($folders = readdir($dirHandles) ) {
if(is_dir($folders) && $folders != '.' && $folders != '..' && $folders != 'images' && $folders != 'thumbs'){
echo '
';
$filer = opendir($folders);
while ($files = readdir($filer) ) {
if(is_dir($folders . '/' .$files) && $files != '.' && $files != '..' && $files != 'images' && $files != 'thumbs'){
echo '
';
}
}
echo '
';
closedir($filer);
}
}
closedir($dirHandles);
?>