Category Archives: PHP

Understanding PHP Arrays

Arrays are a type of variable that have multiple values. Arrays in PHP may seem simple at first, but people aren’t usually aware of all the functions at their disposal and all the different methods of defining arrays. In this article we’ll go over the various methods of defining arrays, multi-dimensional arrays, and the various [...]
Posted in PHP | 1 Comment

Securing PHP Input

PHP is not only an amazing scripting language, but it’s the most widely used server side language out there. Unfortunately, though it is very powerful, there are security risks especially when it comes to user input mainly via GET and POST data. When it comes to PHP, assume all your users are malicious. Their are [...]
Posted in PHP | 2 Comments