help with some syntax

Im trying to get all the picture file paths from a folder into an array

<?php function rotater() { $dir = "../../images/stories/byrne"; // The relative path to the image directory $pictures = glob("$dir/{*.jpg,*.jpeg,*.gif,*.png}",GLOB_BRACE); //$pictures = array("../../images/stories/byrne/1.jpg","../../images/stories/byrne/2.jpg"); // works uncomment this and the image paths are hardcoded foreach($pictures as $img){ echo '
  • '; } } ?>

    any help would be awesome

    thanks

    Sponsor our Newsletter | Privacy Policy | Terms of Service