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