<?php
$target = getenv('TARGET', true) ?: "NOT SPECIFIED";
echo sprintf("Hello World: %s!\n", $target);
?>