From 1bad4fc00814e2c03ecadaa7faf93c6372f5bd30 Mon Sep 17 00:00:00 2001 From: Kyle Kaminski Date: Sun, 16 Jun 2013 03:25:26 -0500 Subject: initial commit --- process.php | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 process.php (limited to 'process.php') diff --git a/process.php b/process.php new file mode 100644 index 0000000..84fdb0b --- /dev/null +++ b/process.php @@ -0,0 +1,53 @@ + + + +Hacker's Corner + + + +

In Soviet Russia the server FETCHES you!

+ +

+\n"; + + /* just close the php tag and write in html, why complicate? */ + $table = "\n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + "
NamePassword
{$_POST['name']}{$_POST['password']}
\n"; + echo "{$table}
\n"; + } + /* GET */ + if (!empty($_GET)) + { + /* heredoc? */ +$table = << + + + + + + + +
TokenValue
Name{$_GET['name']}
Password{$_GET['password']}
E-mail{$_GET['email']}
Location{$_GET['location']}
Home Phone{$_GET['home_phone']}
Work Phone{$_GET['work_phone']}
+EOD; + echo "{$table}
\n"; + } +?> +

+ + + + -- cgit v1.2.3