Insert array into MySQL database with PHP

Insert array into MySQL database with PHP

Insert array into MySQL database with PHP Insert array into MySQL database with PHP, in this article i will step through  on how  to  loop through an Array and insert the Data into MySQL Database table. Prior to that you need to complete  the items listed Below Mamp or xampp with phpMyAdmin install into your … Read more

Accessing Arrays inside Arrays In PHP

Accessing Arrays inside Arrays In PHP

Accessing Arrays inside Arrays In PHP Accessing Arrays inside Arrays In PHP, the code below will show you how to access an Array inside an Array using a for loop. (1) An Array named $robot is being created . (2) Inside  every array index of  $robot  , contains another  Array. (3) To print  the Array … Read more

PHP Multidimensional Array

PHP Multidimensional Array

PHP Multidimensional Array Multidimensional Array, means an Array  inside an array In this Sample code, there is an Array variable name robot inside the robot array there is another array with index 0 refer to as “name ” while index 1 refer to as “serialNumber”. Refer the Sample Code below.