From 046b683603f1c49460079595f819591b1918c9a2 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 28 Jul 2007 09:44:33 -0700 Subject: CLEANUP: moved registration to seperate php file started cleanup on index.php. trying to move as much out of index.php as possible to make it easier to read. --- register.php | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 register.php (limited to 'register.php') diff --git a/register.php b/register.php new file mode 100644 index 0000000..827e77e --- /dev/null +++ b/register.php @@ -0,0 +1,98 @@ +"; + $ok=0; + } + if(DB_get_userid_by_email($_REQUEST["Remail"])) + { + echo "this email address is already used ?!
"; + $ok=0; + } + if($ok) + { + $r=mysql_query("INSERT INTO User VALUES(NULL,".DB_quote_smart($_REQUEST["Rfullname"]). + ",".DB_quote_smart($_REQUEST["Remail"]). + ",".DB_quote_smart(md5($_REQUEST["Rpassword"])). + ",".DB_quote_smart($_REQUEST["Rtimezone"]).",NULL)"); + + if($r) + echo " Welcome to e-DoKo, you are now registered, please visit the". + " homepage to continue."; + else + echo " something went wrong, couldn't add you to the database, please contact $ADMIN_NAME at $ADMIN_EMAIL."; + } + } +/* page for registration */ + else + { + echo "IMPORTANT: passwords are going over the net as clear text, so pick an easy password. No need to pick anything complicated here ;)

"; + ?> +
+
+ Register + + + + + + + + + + + + + + + +
+ + (If your timezone is not listed, just select whatever you want and email the admin your correct time zone.) +
+
+
+ -- cgit v1.2.3-18-g5258