我是 php 新手,尝试将文件上传到 phpMyAdmin 时遇到错误:
Insert new record and upload photo
The upload destination folder does not appear to be writable.
Fatal error: Call to undefined function form_open_multipart() in /home/bg14nz/public_html/ci/application/views/vFormInsertPhoto.php on line 76
这是我的代码:
<h1>Insert new record and upload photo</h1>
<?php echo $error;?>
<?php echo form_open_multipart('site/doupload');?> (line 76)
Photo title:
<input type="text" name="PhotoTitle" value="" size="50" />
<br />
<input type="file" name="userfile" size="20" />
<br />
<input type="submit" value="upload" />
<br /><br />
<div><input type="submit" value="Submit" /></div>
</form>
非常感谢
注意:我正在使用 Codeigniter