Easy alert system with PHP
How to deal with errors, warnings, alerts or notices with PHP. You cannot hard code them into a page because at times they wont be needed yet when they are…
How to deal with errors, warnings, alerts or notices with PHP. You cannot hard code them into a page because at times they wont be needed yet when they are…
Part of BunnyCDN’s new optimizer engine is the manipulation engine. This allows you to append further configurations onto an image URL to manipulate the end received image. Here is a list…
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…
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…
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…