docs/serving/samples/helloworld-php/index.php

5 lines
111 B
PHP

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