Initial commit.
This commit is contained in:
parent
a9c913c9a7
commit
317e1b4e10
13 changed files with 260 additions and 0 deletions
21
php/php.php
Normal file
21
php/php.php
Normal 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"; }
|
||||
|
||||
?>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue