Tag Archives: easy
Simple PHP Page Protector
A couple of years ago I posted a way to protect a PHP page from access on the internet in an easy way. I’ve spent around 15 minutes producing what I feel is a better version of the same script … Continue reading
Data Types in PHP
PHP is not a very strict language when it comes down to data types. Strings: $string = "This is a string"; Strings are values that contain characters. This can include basically everything you can type on your keyboard. Integers: $string … Continue reading