PHP

Email Queue With PHP MYSQL (Simple Example)

Welcome to a quick tutorial on how to create an email queue system in PHP and MYSQL. So you are working on a project that needs to send out a ton of emails… Only to realize that it will crash the mail server if you send them out all at once. Well, let us walk […]

Email Queue With PHP MYSQL (Simple Example) Read More »

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 »