PHP

Very Simple PHP Image Gallery (From Folder No Database)

Welcome to a quick tutorial on how to create a very simple PHP image gallery. Tired of all those complicated gallery plugins on the Internet? Creating a no-database PHP image gallery is as easy as getting a list of image files using glob() and outputting them in HTML. $images = glob(“PATH/GALLERY/*.{jpg,jpeg,gif,png,bmp,webp}”, GLOB_BRACE); foreach ($images as

Very Simple PHP Image Gallery (From Folder No Database) Read More »