x
 
<!DOCTYPE html>
<html>
<body>
<?php
$cars = ["Ford", "Volvo", "BMW"];
foreach($cars as $car):
  echo "$car <br>";
endforeach;
?>
</body>
</html>