This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP Arrays

I like Volvo, BMW and Toyota.

<?php
// define $cars array
$cars = array("Volvo", "BMW", "Toyota"); 

// display the values of the array
echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";
?>