Welcome Guest, Not a member yet? Register   Sign In
How to add image upload to my CRUD
#7

[eluser]Cristian Gilè[/eluser]
By default the upload routine expects the file to come from a form field called userfile, and the form must be a "multipart type.

Change your form tag to:
Code:
<form method="post" action="<?php echo $action; ?> enctype="multipart/form-data" />

and change your input file to:
Code:
<input type="file" name="userfile" class="text" value="<?php echo $this->validation->image_url; ?>"/>

Cristian Gilè


Messages In This Thread
How to add image upload to my CRUD - by El Forum - 01-09-2011, 10:16 AM
How to add image upload to my CRUD - by El Forum - 01-09-2011, 10:26 AM
How to add image upload to my CRUD - by El Forum - 01-09-2011, 10:31 AM
How to add image upload to my CRUD - by El Forum - 01-09-2011, 10:45 AM
How to add image upload to my CRUD - by El Forum - 01-09-2011, 11:42 AM
How to add image upload to my CRUD - by El Forum - 01-09-2011, 08:19 PM
How to add image upload to my CRUD - by El Forum - 01-09-2011, 08:38 PM
How to add image upload to my CRUD - by El Forum - 01-12-2011, 05:50 AM



Theme © iAndrew 2016 - Forum software by © MyBB