在多个图片上传中出现问题? db image附加

时间:2016-09-21 13:38:15

标签: php image using uploading

<form name="property" action="" method="post" enctype="multipart/form-data">
Select Image
<input type="file" name="upload[]"  multiple="multiple" id="image"/>
<input type="submit" value="Submit" name="submit" style="width:200px; height:30px;" />
</form>

MY Php代码:

if(isset($_POST['submit']))
{
$total = count($_FILES['upload']['name']);
for($i=0; $i<$total; $i++) 
{
$tmpFilePath = $_FILES['upload']['tmp_name'][$i];
if ($tmpFilePath != "")
{
$newFilePath[] = "upload/" . $_FILES['upload']['name'][$i];
$values_insert = implode(',', $newFilePath);
if(move_uploaded_file($tmpFilePath, $newFilePath)) 
{
$date=date("Y-m-d");
}
}
}
$d=mysql_query("INSERT INTO properties (iname,cdate) VALUES('".$values_insert."',NOW())") or die(mysql_error());
}

Here It shows the upload foldername and image name, I want only image name sperated by comma, please see the image

注意:
    在数据库中,路径上传目录文件夹和图像图像将进入数据库,我只想用逗号分隔的图像名称。例如,预期的输出是Chrysanthemum.jpg,Desert.jpg。我不知道是什么问题。请指导我。请仔细查看我的代码和图片附件详情。

1 个答案:

答案 0 :(得分:0)

这就是fyi - 缩进代码可以帮助人们阅读和帮助你。

if(isset($_POST['submit']))
    {
    $total = count($_FILES['upload']['name']);
    for($i=0; $i<$total; $i++) 
    {
    $tmpFilePath = $_FILES['upload']['tmp_name'][$i];
    if ($tmpFilePath != "")
    {
    $newFilePath = "upload/" . $_FILES['upload']['name'][$i];
    $newFilePath2[] =  $_FILES['upload']['name'][$i];
    $values_insert = implode(',', $newFilePath2);
    if(move_uploaded_file($tmpFilePath, $newFilePath)) 
    {
    $date=date("Y-m-d");
    }
    }
    }
    $d=mysql_query("INSERT INTO properties (iname,cdate) VALUES('".$values_insert."',NOW())") or die(mysql_error());
    }