Skip to content

Instantly share code, notes, and snippets.

@guibranco
Created October 2, 2018 01:15
Show Gist options
  • Save guibranco/12ebafc7638c26c63e70c0744e8c60c3 to your computer and use it in GitHub Desktop.
Save guibranco/12ebafc7638c26c63e70c0744e8c60c3 to your computer and use it in GitHub Desktop.
<?php
$banners = "gallery-adm/repository/banners/";
chdir($banners);
$arq_banners = glob("{*.png,*.jpg,*.jpeg,*.bmp,*.gif}", GLOB_BRACE);
foreach($arq_banners as $img_banners)
echo "<img src=".$banners.$img_banners." />";
$studio = "gallery-adm/repository/studio/";
chdir("../studio");
$arq_studio = glob("{*.png,*.jpg,*.jpeg,*.bmp,*.gif}", GLOB_BRACE);
foreach($arq_studio as $img_studio) {
?>
<article class="tattoo-section" <?php echo "data-img=".$studio.$img_studio.""; ?> <?php echo "data-tabletimg=".$studio.$img_studio.""; ?> <?php echo "data-phoneimg=".$studio.$img_studio.""; ?> >
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment