rjWebsites Posted December 22, 2007 Share Posted December 22, 2007 Hi All, I am a newby here. I need your help please. I need a way to Identify a browser session. Is there a way to do that? or should I reinvent the wheel? Thanks, RJ Quote Link to comment https://forums.phpfreaks.com/topic/82807-browser-session/ Share on other sites More sharing options...
dbillings Posted December 22, 2007 Share Posted December 22, 2007 You could use javascript <script type="text/javascript"> var browser=navigator.appName; var b_version=navigator.appVersion; var version=parseFloat(b_version); document.write("Browser name: "+ browser); document.write("<br />"); document.write("Browser version: "+ version); </script> Quote Link to comment https://forums.phpfreaks.com/topic/82807-browser-session/#findComment-421131 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.