如何使用codeigniter在编辑页面中显示上传的文件(例如doc,img等)

时间:2018-05-23 08:27:05

标签: php codeigniter

我的问题是,是否有可能在编辑页面中显示上传的文件名

我的代码是

<div class="help-block with-errors pull-right"></div>
          <div class="form-group">
        <label class="col-sm-3 control-label" for="bill">Upload Proof</label>
        <div class="col-sm-9">
          <input type="file" name="Customer_file" id="Customer_file" src="<?php echo $data[0]->file_path; ?>" class="" />
        </div>
        <div class="help-block with-errors pull-right"></div>
      </div>
      <input type="text" value="" name="file_path" id="file_path" hidden/>
       </div>

我的输出页面:enter image description here

我可以在上传校样字段中显示已选择的文件名吗?

1 个答案:

答案 0 :(得分:1)

将文件存储为自己,存储正在上传的文件类型。 就像它的图像一样,存储img,如果是文件则存储文件。

在获取它们时获取两个数组中的数据。一个数组中的所有图像,另一个数组中的所有文件。

然后在您的视图页面中,您可以为图片和&#39; <img></img>&#39;添加<a></a>标记。对于文件。