Image compression with PHP
Using PHPs inbuilt image compression function imagejpeg I did a test to find out is it worth compressing images? and is there a big difference? The usage is simple for…
Using PHPs inbuilt image compression function imagejpeg I did a test to find out is it worth compressing images? and is there a big difference? The usage is simple for…
Knowing past eBay item auction prices is a great indicator on what you really should be spending. You can actually see past listings and sales on eBay through what is…
BunnyCDN storage servers are very affordable and work fast. You can fast track content delivery across the globe using them. Whilst uploading file/s with FTP in a PHP script isn’t…
Here is a quick and easy guide on uploading and installing a Windows Server 2019 iso with Vultr cheaply. Vultr is a trusted and reliable cloud computing business with a…
Here is a straightforward, easy guide on installing and setting up a DayZ Standalone server on a Windows computer or server. For this guide I used Windows server 2016, it…
Fortnite Tracker is a third-party service that creates an API endpoint for the Fortnite game. Here is a guide on getting your player stats, however in this post I will…
Here is a method to have a video autoplay and loop in the background of a webpage. The CSS has focus on it being somewhat responsive, With a framework like…
Ever clicked a link and seen a spooky popup or mention of the website you just came from on the new page? This is done through HTTP_REFERER. $_SERVER[“HTTP_REFERER”] You can…
Here are some examples to filter through strings in PHP to meet conditions. PHP functions used during this tutorial are: substr, is_numeric, preg_replace, str_replace and trim. Assume possible strings could…
How to sort arrays and associative arrays in ascending and descending sort. To sort an array ascending use sort: $array = array(“Car”, “Animal”, “Book”); sort($array);//(“Animal”, “Book”, “Car”) Or with values…