Guys i need some help on PHP session. Not sure if there's anything wrong with my thoughts. Consider the following scenario,
I don't want to use the standard "PHPSESSID" identifier as my session cannot be shared accross browser tabs. I believe this is the standard identifier created in a cookie by the session_start() function.
Implementation
I will use the session_name($random_8_digits)
Problem
How do i retrieve my session if I do not want to pass the "$random_8_digits" through GET / POST for security reasons ?
Does it even make sense ?
I don't want to use the standard "PHPSESSID" identifier as my session cannot be shared accross browser tabs. I believe this is the standard identifier created in a cookie by the session_start() function.
Implementation
I will use the session_name($random_8_digits)
Problem
How do i retrieve my session if I do not want to pass the "$random_8_digits" through GET / POST for security reasons ?
Does it even make sense ?
