PHP

Posts related to PHP

How to sort a multi-dimension array by value in PHP

In this article we will see how to sort a multi-dimension array by value of one of the keys of the array. We can use a few different methods to do this. One way to to use usort() function. Another way is to just identify the values and create another array with the values and […]

How to sort a multi-dimension array by value in PHP Read More »

PHP 5.5 Password Hashing API

Most of the applications or websites today have a user registration system which requires storing usernames, passwords etc. A developer of the application should always store passwords securely and never in plain text. There are many methods to encrypt or hash passwords and store in the database but which method to use? The methods that

PHP 5.5 Password Hashing API Read More »

Encryption using PHP and OpenSSL

Encryption using PHP and OpenSSL Read More »

Big forms and PHP max_input_vars

Big forms and PHP max_input_vars Read More »

How to apply a function to every array element in PHP

How to apply a function to every array element in PHP Read More »