Array in PHP
Suppose we want to store 100 data item. So we need 100 different variable. So this is very typical work for programmer to manage 100 different variable.To overcome this problem we create a special type variable known as array.
array is a special type of variable that store one more values in one single variable. And each element in the array has its own index.
In PHP, there are three kind of arrays:
Numeric...