Welcome Guest, Not a member yet? Register   Sign In
form_open_multipart
#1

[eluser]Unknown[/eluser]
I have form_add.php in "application/view"

Code:
echo form_open_multipart('system/manage_add/');
            <div class="add_news">
                <p>Hình đại diện:</p>
                &lt;input type="file" name="userfile" id="userfile"&gt;
            </div>
    &lt;?=form_close();?&gt;

and system.php in "application/controller"

Code:
........

function manage_add(){
        
    echo $this->input->post('userfile'); // echo "0"

........

why? help me
#2

[eluser]Siddhesh[/eluser]
Hi tùng,

As you are trying to upload a file, you will never get it in
Code:
$this->input->post()
as it only handles post data.

For uploaded files you have to check in
Code:
$_FILES
array.

Please have a look at this. You will find it helpful.


File uploading class


Thanks & regards
SiDh.




Theme © iAndrew 2016 - Forum software by © MyBB