Login
Remember
Register
Ask a Question
What is the Session methods in FuelPHP?
+2
votes
asked
Jan 16, 2022
in
FuelPHP
by
DavidAnderson
What is the Session methods in FuelPHP?
fuelphp-interview-questions
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 16, 2022
by
DavidAnderson
Create ()
- Used for creating a new session.
Set ()
- Used for assigning a session variable.
Destroy ()
- Destroying the existing session is the main task of this method.
Get ()-
it gets the sessions variable.
Delete ()
- It deletes the stored variable which has been retrieved from the sessions
...