Answer Posted / harjeet
session_register()
e.g.
$user="Username";
session_register("user");
or more preferred way is
$_SESSION['user']="username";
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
Which php framework is best for web development?
What does nan stand for computer science?
Where sessions stored in PHP?
How to find the index of an element in an array php?
Tell me how can we automatically escape incoming data?
What is printf in php?
What is oops php?
what is the use of include_once in php?
What is the best php version for wordpress?
What is reference variable php?
What is the difference between session_unregister() and session_unset()?
What are html entities?
What exactly is validating and sanitizing?
Does php 7 support multiple inheritance?
How to take a substring from a given string in php?