PHP randomise a variable

If you want to randomise a PHP variable the following code is a great example: $vars = [‘Apple’, ‘Orange’, ‘Melon’, ‘Lemon’, ‘Lime’]; $random = $vars[mt_rand(0, count($vars) – 1)]; echo $random;…

PHP $_GET example

PHP GET sends data or a value through the URL, obviously not good or used for passwords but it is good to shape that URL’s page contents. Do note that…

KVM or OVZ? The differences

KVM and OVZ are types of virtulisation with servers. Server hosting companies have what is called dedicated servers, very powerfull machines. These dedicated servers are split up into VPS’s which…

What is SSL?

SSL stands for Secure Sockets Layer. It is a security measure for encrypting the link between the web server and the browser. Making the data passed through this link encrypted…

What is a CDN

CDN stands for Content Delivery Network. A CDN is a cluster or group of servers around the world that host content (images, media, files). That when called on will deliver…

What is drop shipping?

Drop shipping is where a store or the seller does not keep or have the product in stock. When a sale is done the seller then purchases the product from…