What is the use of htaccess?

In several web servers (most commonly Apache), .htaccess (hypertext access) is the default name of a directory-level configuration file that allows for decentralized management of web server configuration. The .htaccess file is placed inside the web tree, and is able to override a subset of the server’s global configuration; the … Read more

PHP Array functions

PHP have some inbuilt functions for managing arrays, functions are

array_change _key_case
Returns an array with all string keys to lowercase or uppercase letter(s).
array_chunk
Split an array into chunks
array_combine
Creates an array by using one array for keys and another for its values
array_count _values
Counts all the
Read more