Answers for "print the content of an array php"

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

Code answers related to "print the content of an array php"

Browse Popular Code Answers by Language