InterviewSolution
Saved Bookmarks
| 1. |
How To Remove Values Saved In The Current Session? |
|
Answer» If you want to remove values saved in the CURRENT session, you should USE the UNSET() function on those saved values in $_SESSION, or use array() to EMPTY $_SESSION:
If you want to remove values saved in the current session, you should use the unset() function on those saved values in $_SESSION, or use array() to empty $_SESSION: |
|