Getting Browser Information - michatmaster7 - Jun 2nd, 2016
Is there some way to record the type/version of browser the user is using when submitting a form? I've gotten a few submissions that seemingly bypass all the validation rules (PHP), with no explanation. I'd like to narrow it down further. Thinking that maybe they are using some ancient browser or something?
RE: Getting Browser Information - alexh - Jun 2nd, 2016
I would think you can get the browser info on page load and put it in a hidden field that gets submitted with your form.
Check out http://php.net/manual/en/function.get-browser.php
That has some sample code on getting user-agent data.
Alex
(Jun 2nd, 2016, 12:32 PM)michatmaster7 Wrote: Is there some way to record the type/version of browser the user is using when submitting a form? I've gotten a few submissions that seemingly bypass all the validation rules (PHP), with no explanation. I'd like to narrow it down further. Thinking that maybe they are using some ancient browser or something?
|