I want to keep a track of what browsers access my website. I have a database that stores the user information after they register on the website, along with the data they enter in the form I also want to store what browser they used to access and register on the website. Is there actually any way to do that, for a website to see what browser is being used and save that information?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This will return what browser is being used From the docs: "Attempts to determine the capabilities of the user's browser, by looking up the browser's information in the browscap.ini file." UPDATE: As @ Brad pointed out, this function isn't reliable anymore. You can use |
|||||||||||||||
|
get_browser()anymore. The data it relies on isbrowscap.ini, which is no longer updated. – Brad Nov 19 '12 at 22:21