0
CodeIgniterで複数のファイルをアップロードしようとしていますが、エラーが発生しています: You did not select a file to upload
Codeigniterで複数のファイルをアップロードするとエラーが発生する
<input type="file" id="ModelImage" name="ModelImage[]" multiple="multiple" value=""/>
私のPHPコード:nameパラメータがなければなりません
for($i = 0; $i < count($_FILES['ModelImage']["name"]); $i++)
{
if (!empty($_FILES['ModelImage']['name'][$i]))
{
$config['upload_path'] = './uploads/starmodel/';
$config['allowed_types'] = 'gif|jpg|png';
$config['file_name']= "star_".$lastid."_".$i.strrchr(basename($_FILES["ModelImage"]["name"][$i]),".");
$this->upload->initialize($config);
if ($this->upload->do_upload('ModelImage'))
{
$data = $this->upload->data();
$udata = array('ModelImage' => $config['file_name']);
$this->db->where('ModelID', $lastid);
$this->db->update('starmodel', $udata);
}
else
{
echo $this->upload->display_errors();
}
}
}
リプレイに感謝します。 @jordan Arsenault –