function createUserSalt() { $saltlength = 32; $salt = ''; for ($i = 0; $i < $saltlength; $i++) { $salt .= chr(rand(33, 126)); } return $salt; }