BunnyCDN Bunny optimizer feature
Currently in beta BunnyCDN’s new Bunny Optimizer feature is a another way to further compress and efficiently serve your files and images around the globe. Using a CDN like BunnyCDN…
Currently in beta BunnyCDN’s new Bunny Optimizer feature is a another way to further compress and efficiently serve your files and images around the globe. Using a CDN like BunnyCDN…
PHP’s base64_encode() and base64_decode() are functions that encode the inputted data with base64 and then decode it back to its original state before being encoded. A classic example is a…
Doing a loop through on a MySQL query is super useful and common. It allows you to make tables, rows and output data in a controlled manner without doing many…
The humble and ever so common log file can come in may shapes, types and forms. From .txt to .log, .stderr or .stdout. They are the history and result of…
Lorem Picsum the image version of Lorem Ipsum thus providing free to use placeholder images in the style and size of your preference. Lorem Picsum uses images sourced from Unsplash,…
MySQL DateTime format is Y-m-d H:i:s known as Year-month-day hour:minute:second. It is the bare bones datetime format for both MySQL and PHP…. it contains all you need to know and…
The what is a variable conundrum. Thankfully the variable concept is an easy one: Dictionary term Variable in dictionary terms is a changeable factor or an inconstant, i.e something that…
Being able to use FFmpeg.exe without referencing its location or copying it into the folder you’re operating in is a huge piece of simplicity. Once FFmpeg is added to your…
A MySQL insert in PHP can be easily done however they can be long and tedious. Frustrating to essentially make a table and then repeat it again with an insert…
To check if a file exists you use the PHP function file_exists. Input the path to the file and it will return TRUE if the file exists otherwise FALSE. if…