Answers for "how to display arrays in php"

PHP
1

php echo array

foreach($results as $result) {
	echo $result . '<br>';
}
Posted by: Guest on April-02-2020
0

print array in php

print_r($array);
Posted by: Guest on July-16-2020

Code answers related to "how to display arrays in php"

Browse Popular Code Answers by Language