Hello world
echo "Hello world";
Prints the two words one by oneecho "Hello ";
echo "world";
Prints the variable $greeting
$greeting = "Hello world";
Echo $greeting;
Concatenates the string to the variable $greeting
$greeting = "hello world!";
Echo $greeting . " Let's get started!";