Initial commit.

This commit is contained in:
Johannes Findeisen 2024-02-07 09:27:22 +01:00
commit 317e1b4e10
13 changed files with 260 additions and 0 deletions

21
php/php.php Normal file
View file

@ -0,0 +1,21 @@
---
permalink: /cgi/php/index.php
---
<?php
header('Content-Type: text/plain');
echo('Hello from PHP!');
echo("\n\n");
echo('date("l jS \of F Y h:i:s A");');
echo("\n");
echo date("l jS \of F Y h:i:s A");
echo("\n\n");
echo('for ($x = 0; $x <= 10; $x++) { echo "$x\n"; }');
echo("\n");
for ($x = 1; $x <= 10; $x++) { echo "$x\n"; }
?>