Answers for "how to print array using echo in php"

PHP
1

php echo array

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

php echo array

<?php
$cars = array("Volvo", "BMW", "Toyota");
echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";
?>
Posted by: Guest on April-02-2020

Browse Popular Code Answers by Language