aboutsummaryrefslogtreecommitdiff
path: root/Web design/PHP/Test/process.php
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2020-06-28 10:26:03 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2020-06-28 10:26:03 +0300
commit6f4cfe7b5c6c74d83b03e18870aeb6977db6c0de (patch)
tree11f667f63e10fee036cd963dde35562183b9764d /Web design/PHP/Test/process.php
parentf2d1216153123a3fbee6af8e7a0ad06a3577f216 (diff)
downloadSelf-learning-6f4cfe7b5c6c74d83b03e18870aeb6977db6c0de.tar
Self-learning-6f4cfe7b5c6c74d83b03e18870aeb6977db6c0de.tar.gz
Self-learning-6f4cfe7b5c6c74d83b03e18870aeb6977db6c0de.zip
Did some tinkering with PHP and Javascript.
Diffstat (limited to 'Web design/PHP/Test/process.php')
-rw-r--r--Web design/PHP/Test/process.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/Web design/PHP/Test/process.php b/Web design/PHP/Test/process.php
new file mode 100644
index 0000000..796b517
--- /dev/null
+++ b/Web design/PHP/Test/process.php
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html lang="en" dir="ltr">
+ <head>
+ <meta charset="utf-8">
+ <title></title>
+ </head>
+ <body>
+ <?php
+ $name = $_POST["name"];
+ echo "Hello " . $name;
+ ?>
+ </body>
+</html>