Create a multidimensional array:


SUBMITTED BY: henry1874w

DATE: June 22, 2017, 12:03 a.m.

FORMAT: Text only

SIZE: 138 Bytes

HITS: 230

  1. <?php
  2. // A two-dimensional array:
  3. $cars=array
  4. (
  5. array("Volvo",100,96),
  6. array("BMW",60,59),
  7. array("Toyota",110,100)
  8. );
  9. ?>

comments powered by Disqus