I've been working on a web app using the CodeIgniter framework and am having trouble uploading images. All the examples I've found online usually only show forms that only have one file input (for example, http://codeigniter.com/user_guide/libraries/file_uploading.html).
The views shown in the examples often look like this:
<?php echo $error;?>
<?php echo form_open_multipart('upload/do_upload');?>
<input type="file" name="userfile" size="20">
<input type="submit" value="upload">
</form>
But I'm trying to do something more like this:
<?php echo $error;?>
<?php echo form_open_multipart('upload/do_upload');?>
<input type="file" name="userfile" size="20">
<input type="text" name="file_title">
<input type="submit" value="upload">
</form>
Do I need to create two separate forms to accomplish this (one for the image upload and one for the text input)? Or is it possible to write a function in the controller that can validate and process both the upload and text input simultaneously?
Any resources you could point me to? Thanks a ton!