Updating session ID for security [closed]

0

In order for me to keep my session data more secure, I can update the session id on each page, by doing the following:

 if (!isset($_SESSION)) { session_start(); session_regenerate_id();

}  

Will this overwhelm the server?

    
asked by anonymous 01.07.2016 / 02:25

1 answer

1

It will not overload, not only if you have thousands, or millions, or a little more than that of kk pages, other than this will not influence the server as much

    
01.07.2016 / 02:28