jquery - Open browser window using javascript? -
this question has answer here:
to open new ie browser window, i'm using below code.
window.open ("http://jsc.simfatic-solutions.com","mywindow");
but how can open new ie window new session ?
sessions handled via cookies, , there no way programatically make browser start new cookiejar window.
you need provide other session tracking mechanism. 1 way via url parameter (e.g. ?session_id=123455
). has security implications (because session ids can leak through link sharing , referers) php has native support it.
you better off using regular session , have sub-session within it. store data in $_session['subsession'][0]
, pass numerical id through query string.
Comments
Post a Comment