我的表单中有一个文件上传器。我想以这种形式添加一个文本框,用户可以在其中提供他要上传的文件的网址。我想使用codeigniter的默认do_upload()函数上传文件,以便可以使用验证功能,而避免再次编写大量代码来验证该文件。
我有:
<input type="file" class="file" name="reciept" id="reciept" />
我想要:
<input type="file" class="file" name="reciept" id="reciept" />
<input type="text" class="file_url" name="reciept_url" id="reciept_url" />