我想知道如何在使用 codeigniter 时上传图像并将其名称保存在数据库中,我为此使用了简单的表单标签,例如,
<form action="" name="add" enctype="multipart/form-data" method="post">
<label for="img">Image: </label> <input type="file" name="image" />
<label for="title">Title: </label> <input type="text" name="photo_title" value="" />
<label for="description">Description: </label>
<textarea name="photo_description"> </textarea>
<label for="photo_category">Category </label>
<select name="photo_category">
<option value="select_one">Please Select..</option>
<option value="fun">Fun</option>
</select>
<input type="submit" value="Add" />
</form>
我检查了手册,但无法理解他们在做什么,请任何人帮助我为此创建一个控制器功能,该功能将在数据库中插入所有值并上传图像文件。
谢谢,沙鲁克