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 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> Link to comment https://forums.phpfreaks.com/topic/82807-browser-session/#findComment-421131 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.