Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.41K
~207 People Reached
Favorite Forums
Favorite Tags
php x 1
Member Avatar for GraficRegret

so here is the line calling the function: $login = login($username, $password); if($login == false) { $errors[] = 'That username/password combination is incorrect'; }else { $_SESSION[user_id] = $login; header('Location: anounceEdit.php'); exit(); and here is the functions code function login($username, $password) { $user_id = user_id_from_username($username); $username = sanitize($username); $password = SHA1($password); …

Member Avatar for bpinkston1
0
207