Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~1K People Reached
Favorite Forums

7 Posted Topics

Member Avatar for borobhaisab

Check my login function which returns the user data as array also with secure hashed password, note when you secure password store it as blob the convert it back for verification, also check my conversion function aswell. Note: password is hashed and using salt by: password_hash('password', PASSWORD_ARGON2ID); Hope this helps …

Member Avatar for borobhaisab
0
144
Member Avatar for Stelian_1

Is there a way to get the data from an registration form by counting the inputs and textfields but excluding the submit and hidden ones? Lets say I have a form with 5 input fields that contains the data for registration can I make an array for all so when …

Member Avatar for Dani
0
80
Member Avatar for Abhinesh_1
Member Avatar for borobhaisab

I think you should never echo the hased password and save the hashed password in db as blob and decode it only for verification cause when you password_verify($pas, $hashed), 1st checks dictionary depending on the algorithm you use then salt and then hashed algorithm after that it changes the salt …

Member Avatar for Biiim
0
374
Member Avatar for Christopher_45
Member Avatar for Stelian_1

I'm not a php expert but I wonder if there is a way to secure the tunnel with https and if can somehow use some sort of certificate to the session from the class when it outputs the userdata into session and read it as an input by the class? …

Member Avatar for Dani
0
52
Member Avatar for sheeview

<?php session_id(); // to set session id session_name(); // to set the session name session_start(); // start the session before $_SESSION otherwise there is no $_SESSION not even a NULL one isset($_SESSION);

Member Avatar for Stelian_1
1
405

The End.