How can we do user authentication without using
session/cookies ? For ex:- From page1 accepts user name and
password and need to check in all other pages whether the
user has logged in or not
Answer Posted / master
it is possible by passing the username and password through
the url or using hidden fields if the site contains forms
in all the subsequent pages , else through the url encrypt
the username and password and decrypt the value and check
whether the values passed it same with some predefined
values.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is encapsulation in php?
How to move uploaded files to permanent directory?
What does session start do in php?
How to set cookies in PHP?
What are magic methods?
What is the delimiter default in PHP?
How to get complete current page url in php?
Which is faster for or foreach?
How cookies are trported from browsers to servers?
How big is varchar max?
How to compare two strings with comparison operators in php?
How to list all values of submitted fields?
How failures in execution are handled with include() and require() functions?
What are the differences between require and include?
What is inheritance in php with example?