gpt4 book ai didi

php代码一次将单个文件更新到mysql中的多个用户

转载 作者:行者123 更新时间:2023-11-30 00:11:14 25 4
gpt4 key购买 nike

如何使用 php 将单个文件上传到数据库中的各个行(通过 html 表中的复选框选择),以便将文件上传到 mysql 数据库中选定的用户行。

最佳答案

嗯..不确定这是否是您所需要的,但是:

$db = new MySQLi("host", "user", "pass", "db");  # DB connection.
$ids = implode(",", $_POST['ids']); # Rows IDs.
$file = $db->real_escape_string(file_get_contents($_FILES['file']['tmp_name'])); # Uploaded file contents, escaped.
# Please note that some further checks on POST data are strongly adviced.

$db->query("UPDATE `mytable` SET `file` = '{$file}' WHERE `id` IN ({$ids})"); # Query.

显然,这需要适当的 POST 请求,以及正确设置列的 MySQL 表。

关于php代码一次将单个文件更新到mysql中的多个用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24031767/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com