function getDir(){ $stack = array(); $directory = "static/images/take3/"; //get all image files with a .jpg extension. $images = glob($directory . "*.jpg"); $str = "["; foreach($images as $image){ array_push($stack, $image); } shuffle($stack); foreach ($stack as $img) { $str .= "'".$img."', "; } $str .= "]"; return $str; } ?>