-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
60 lines (46 loc) · 1.3 KB
/
functions.php
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/* File containing all the functions needed during the processing of data (for code reusability) */
session_start();
function signup($doc){
//function for inserting a user document into global collection for users
global $collection;
$collection->insert($doc);
return true;
}
function check_user($username){
/* function for checking whether a username already exists with the given parameter */
global $collection;
$x = $collection->findOne(array('Username'=>$username));
if(empty($x)){
return true;
}
else{
return false;
}
}
function password_check($pass,$cpass){
// function for checking whether password and confirm_password match or not
return($pass==$cpass);
}
function password_lencheck($pass){
// function for checking whether length of password in given range or not
return(!(strlen($pass) < 8));
}
function user_login($username){
//function for setting up session variables upon successfull login
$_SESSION["userSignedIn"] = 1;
global $collection;
$h = $collection->findOne(array('Username'=>$username));
$_SESSION["username"] = $h["Username"];
return true;
}
function check_signin(){
// function for checking if user already logged in or not
if($_SESSION["userSignedIn"] == 1){
return true;
}
else{
return false;
}
}
?>