<?php

$name = "Whippets Bron and Sol";
echo "Hello $name\n";

/*

https://www.w3schools.com/php/
https://www.w3schools.com/php/php_string.asp

This file is called demo.php, to run it, in a terminal type: php demo.php
The output is: Hello Whippets Bron and Sol

*/

?>