$imagesDir = 'images/tips/'; $images = glob($imagesDir . '*.{jpg,jpeg,png,gif}', GLOB_BRACE); $randomImage = $images[array_rand($images)]; // See comments
You can send a 2nd argument to array_rand() to get more than 1
$imagesDir = 'images/tips/'; $images = glob($imagesDir . '*.{jpg,jpeg,png,gif}', GLOB_BRACE); $randomImage = $images[array_rand($images)]; // See comments
You can send a 2nd argument to array_rand() to get more than 1