我在这方面很新,很难建立一个非常简单的图像上传脚本。
如果我插入一条记录,我有一个名为txtfoto的输入文件,这很好,但我要做的是一次插入名为txtfoto[]的4个输入文件的值。我确信我的PHP代码中有错误或缺失,因此任何帮助我都会很好。
HTML格式:

<label>Imagen: <input name="txtfoto[]"  type="file">
<input name="txtfoto[]"  type="file">
<input name="txtfoto[]"  type="file">
<input name="txtfoto[]"  type="file"></label>

菲律宾比索:
    $file = $_FILES["txtfoto"]["name"][$key]

mysql语句:
for ($key=0; $key<count($_FILES["txtfoto"]["name"][$key]); $key++){
$sql = "INSERT INTO imagenes (nombre,foto) VALUES (:nombre,:foto)";
$result = $db->prepare($sql);
$result->execute(array(':nombre' => $txtnombre, ':foto' => $file));}
}

最佳答案

for ($key=0; $key<count($_FILES["txtfoto"]["name"]); $key++){
$file = $_FILES["txtfoto"]["name"][$key];
$sql = "INSERT INTO imagenes (nombre,foto) VALUES (:nombre,:foto)";
$result = $db->prepare($sql);
$result->execute(array(':nombre' => $txtnombre, ':foto' => $file));}

09-25 19:51