diff options
author | Arun Persaud <arun@nubati.net> | 2007-07-18 22:26:29 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2007-07-18 22:26:29 -0700 |
commit | b5f096688faaebf7846b3e725e1bd2dd9251b203 (patch) | |
tree | c58a2079c2e6f941accb62c8046621ee59cdd0d9 /db.php | |
parent | 1332ef44c9587295fe054c73415d405247fb297d (diff) | |
download | e-DoKo-b5f096688faaebf7846b3e725e1bd2dd9251b203.tar.gz e-DoKo-b5f096688faaebf7846b3e725e1bd2dd9251b203.tar.bz2 e-DoKo-b5f096688faaebf7846b3e725e1bd2dd9251b203.zip |
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
Diffstat (limited to 'db.php')
-rw-r--r-- | db.php | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -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"; |