Different types of PHP Arrays
There are three types of php arrays:
Indexed.
Associative.
Multi-Dimensional.
Indexed Arrays
This is an array that has a numeric key. Like in JavaScript, the arrays are zero-based indexing, that is, they start counting from zero.
<?php
$cities =...
dickson-wachai.hashnode.dev2 min read