有没有办法记录用户在 MySQL 数据库中提交表单的浏览器
我有一个 PHP 页面,它处理表单的提交并将数据添加到 MySQL 表中。我想知道是否有一种方法可以将用户提交表单的浏览器和版本写入 MySQL 表的列中?
谢谢,
尼克
I have a PHP page which handles the submission of a form and adds the data to a MySQL table. I am wondering if there is a way of writing the browser and version that a user is submitting the form from into a column in the MySQL table?
Thanks,
Nick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此信息可在:
函数
get_browser()
能够在某种程度上解析它:注意:实际上没有必要像我上面所做的那样将用户代理变量传递到 get_browser() 中 - 它默认读取该标头。
This information is available in:
The function
get_browser()
is capable of parsing it out to some degree:Note: It's not actually necessary to pass the user agent variable into
get_browser()
as I've done above - it reads that header by default.