I am building a website that requires the user to enter email, password and full name. I am using email and password as login requirements.
Currently, I am using session variables to pass email and password (not hashed/salted) from login.php to index.php and other php pages. (hashed and salted in database)
Every time the user enters into another page, it will check the user's email and password session variables again.
Is it secure to use session variable to store email and password? If not, how can I make it more secure?