我试图在上传后将所有文件的名称存储在一行
$tmp_name = $_FILES["Filedata"]["tmp_name"][$key];
$name = $_FILES["Filedata"]["name"][$key];
$ext = substr(strrchr($name, '.'), 1);
当我回应这个变量
$thelist .= $name.',';
echo $thelist
结果。图像1,图像2,图像3,
但是在Mysql表中,每个结果都是不同的行和列。
image1,,,
image1,image2,
image1,image2,image3,
我只需要一列中的所有一行。像
image1,image2,image3,