I am not clear on the meaning and usage of php\'s session.use_trans_id .
On the online documentation, it says:
the run-time option session.u
"Does this mean it will ALWAYS add the session id? Or only when cookies are not working?"
session.use_trans_sid
and session.use_cookies
are 1, then session.use_only_cookies
decides: 1 will disable URL-rewriting. See this nice article."Will it automatically add it to javascript's window.location or ajax calls?"
"Unless you are using PHP 4.2.0 or later, you need to enable it manually"
"Also, isn't this feature NECESSARY to handle users with cookies disabled?"