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
Can you specify the "new line" character in single-quoted strings?
What is the string concatenation operator in php?
Which programming language does php resemble to?
How to avoid the undefined index error?
Tell me what kind of things have you done on the social side?
Why does php need server?
Which is better php or nodejs?
How to convert strings to upper or lower cases?
How can we make a constant in php?
How can we define a variable accessible in functions of a php script?
What is trim codeigniter?
What are examples of dependent variables?
What is the difference between $var and $$var?
If we login more than one browser windows at the same time with same user and after that we close one window, then is the session is exist to other windows or not? And if yes then why? If no then why?
Tell me what is the difference between characters 34 and x34?