有没有办法记录用户在 MySQL 数据库中提交表单的浏览器

发布于 2024-12-07 06:48:01 字数 108 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偷得浮生 2024-12-14 06:48:01

此信息可在:

$_SERVER['HTTP_USER_AGENT']

函数 get_browser() 能够在某种程度上解析它:

$browserinfo = get_browser($_SERVER['HTTP_USER_AGENT']);
print_r($browserinfo);

echo $browserinfo['browser']; // firefox
echo $browserinfo['platform']; // linux

注意:实际上没有必要像我上面所做的那样将用户代理变量传递到 get_browser() 中 - 它默认读取该标头。

This information is available in:

$_SERVER['HTTP_USER_AGENT']

The function get_browser() is capable of parsing it out to some degree:

$browserinfo = get_browser($_SERVER['HTTP_USER_AGENT']);
print_r($browserinfo);

echo $browserinfo['browser']; // firefox
echo $browserinfo['platform']; // linux

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文