session_start(); | session_destroy();
Hello, everyone:
I have created in my database that when someone logs in that their "session_start()" gets logged into their user account. I also made that when a user logs out that their session is destroyed "session_destroy()". Session_start() produces a UUID such as this computer of numbers and letters "1c57e7291a2de14d0fe08baaee1eba4b". What I would like to happen is that if the user logs out not only is their session is destroyed but also the UID is terminated so that if the user logs back on they do not still have the same session of "1c57e7291a2de14d0fe08baaee1eba4b" but changes it to another and different UID session. Is this possible rather than a new session only starts when a Internet browser is closed down and reponed?
Thank you.
