docs/archived/v0.21-docs/serving/samples/hello-world/helloworld-php/index.php

4 lines
89 B
PHP

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