summaryrefslogtreecommitdiffstats
path: root/include/login.php
blob: 346c71e53e53b79173f9a64b1ec75ae1f43530db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/* make sure that we are not called from outside the scripts, 
 * use a variable defined in config.php to check this
 */
if(!isset($HOST))
  exit;

if(!myisset("email","password"))
  {
    "can't log you in";
  }
else
  {
    $email     = $_REQUEST["email"];
    $password  = $_REQUEST["password"];

    /* verify password and email */
    if(strlen($password)!=32)
      $password = md5($password);
    
    $ok  = 1;
    $myid = DB_get_userid('email-password',$email,$password);
    if(!$myid)
      $ok = 0;
    
    if($ok)
      {
	/* user information is ok */
	$myname = DB_get_name('email',$email);
	$_SESSION["name"] = $myname;
      }
  }
?>