summaryrefslogtreecommitdiffstats
path: root/include/login.php
blob: ea8d8effac122ab63df92334ad1a08481c2b9439 (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
34
<?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;

/* check if login information is present */
if(!myisset("email","password"))
  {
    echo "can't log you in... missing login information.";
  }
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, set session variabel */
	$myname = DB_get_name('email',$email);
	$_SESSION["name"] = $myname;
      }
  }
?>