jquery - Open browser window using javascript? -


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

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -