Hi
I want to add another level of security when using php sessions. So i will simply change the session id everytime the page loads.
The code i use is:
Now the problem that i have is that for some reason php adds the session id into the url which I dont want. can anyone help how to do the same thing without having the session id in the url??PHP Code:$tmpSession=$_SESSION;
session_destroy();
session_id(md5(microtime()));
session_start();
$_SESSION = $tmpSession;


Reply With Quote
Bookmarks