I'm kinda new at making custom sites for mangos and when I try making an account page I always mess up on one part :|
(php issue)
when they post the password ini heard in mangos its in SHA1 so when i add this codeCode:$password = $_POST['password'];instead and when I make an account the password is encoded but the account information is never rightCode:$password = sha1($_POST['password']);is there something else I should be adding to that part of the script?