How to print array values in php using find i value – Indexed array
How to print array values indexing in php using Indexed array Indexed array is array with a numeric index. Index will Start with ‘0’ and it can be assigned automatically example < ?php $design = array(‘photoshop’,’flash’,’dreamviewer’,’html5′); echo $design[0]; //output is photoshop echo $design[1]; //output is flash ?> If you know the total number of array…