Related PHP links
What Is a Session in
PHP?
Answer - A PHP session is no different from a normal session.
It can be used to store information on the server for future use.............
Explain
the difference between $message and $$message?
Answer - $message is used to store variable data. $$message can
be used to store variable of a variable.............
How to set cookies
in PHP?
Answer - Cookies are often used to track user
information.............
What
is the difference between include and require?
Answer - Require () and include () are the same with respect to
handling failures.............