From b5f096688faaebf7846b3e725e1bd2dd9251b203 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Wed, 18 Jul 2007 22:26:29 -0700 Subject: NEW FEATURE: use php session used php session, so that people can actually log in and out and linking from one page to another can be done easily without using form to send the password as a hidden parameter over the net all the time --- db.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'db.php') diff --git a/db.php b/db.php index f883fff..21a77f8 100644 --- a/db.php +++ b/db.php @@ -61,6 +61,16 @@ function DB_get_email_by_name($name) else return ""; } +function DB_get_passwd_by_name($name) +{ + $result = mysql_query("SELECT password FROM User WHERE fullname=".DB_quote_smart($name).""); + $r = mysql_fetch_array($result,MYSQL_NUM); + + if($r) + return $r[0]; + else + return ""; +} function DB_get_email_by_userid($id) { @@ -760,8 +770,8 @@ function DB_get_PREF($myid) { if($r[0]=="germancards" && (time()-strtotime( "2009-12-31 23:59:59")<0) ) /* licence only valid until then */ $PREF["cardset"]="altenburg"; - else - $PREF["cardset"]="english"; + else + $PREF["cardset"]="english"; } else $PREF["cardset"]="english"; -- cgit v1.2.3-18-g5258