diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-10-24 15:36:46 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-10-24 15:36:46 +0300 |
| commit | 2d9481dd9772008f0b402b6d1379b1165b7c7e28 (patch) | |
| tree | 3fce5495b97b0bac76ea8a2f5f1e8ccf253659b4 /PHP/Test/calc.php | |
| parent | bd760b5c51351e787297ceb54422beb8ce00a1ec (diff) | |
| download | Self-learning-2d9481dd9772008f0b402b6d1379b1165b7c7e28.tar Self-learning-2d9481dd9772008f0b402b6d1379b1165b7c7e28.tar.gz Self-learning-2d9481dd9772008f0b402b6d1379b1165b7c7e28.zip | |
Modified php, javascript and html file tree
Diffstat (limited to 'PHP/Test/calc.php')
| -rw-r--r-- | PHP/Test/calc.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/PHP/Test/calc.php b/PHP/Test/calc.php new file mode 100644 index 0000000..c2728d9 --- /dev/null +++ b/PHP/Test/calc.php @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html lang="" dir="ltr"> + <head> + <meta charset="utf-8"> + <title></title> + </head> + <body> + <?php + if ($_POST["one"]) { + echo 1; + } + elseif ($_POST["two"]) { + echo 2; + } + ?> + </body> +</html> |
