Guys I have password verify in my login file
if($row['user_name'] === $name && password_verify($pass,password_hash $string)) {
But I have password hash in my signup modal.php how do I import the $password string which have password hash from signup file to login if I include the signup file it takes the full form at here for signup and the session some guys reffered me to not use session on password I wanna know how will I get the password hash string to my login file from.signup without session or file include