Answers for "php display arrays of arrays"

PHP
2

print array items in php

<?php $data = array('a'=>'apple','b'=>'banana','c'=>'orange');?>
<pre><?php print_r($data); ?></pre>
Posted by: Guest on July-15-2021

Browse Popular Code Answers by Language