InterviewSolution
Saved Bookmarks
| 1. |
What Is Session_register()? |
|
Answer» session_register() is OLD function that REGISTERS global variables into the current session. You should stop using session_register() and USE array $_SESSION to save values into the current session now. session_register() is old function that registers global variables into the current session. You should stop using session_register() and use array $_SESSION to save values into the current session now. |
|