Ways to echo in PHP

PHP echo, one of the common used PHP operators. Echo is used to output a string. You can combine echo with strings and variables, Here are some examples: $age =…

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…