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


Smartphone icons created by Freepik - Flaticon

PHP Constants

Create an Array constant:

Alfa Romeo

<?php
// define an array constant
define("cars", [
  "Alfa Romeo",
  "BMW",
  "Toyota"
]);

// display cars index 0
echo cars[0];
?>