My HTML:
<?php echo form_open_multipart(base_url() . 'user/' . $this->session->userdata['username'] . '/settings/picture'); ?>
<input type="file" name="photo_data" id="photo_data" value="" />
<input type="submit" value="Save" name="submit" class="button_ui fr" />
<?php form_close(); ?>
So the user goes to its settings page and clicks Picture Tab in the menu which then shows the above HTML and allows the user to update the picture.
I then went into my user controller and tried to check if the user is in the picture tab and print out the data being sent so i can continue coding the rest part... but the thing is that it doesnt print the picture that i select to upload...
My controller code:
if ($this->uri->segment(4) == 'picture'){
if (isset($_POST["submit"])){
print_r($_POST);
}
}
Output:
Array ( [submit] => Save Changes )

$_POSTdoesn't contain your file data. Its located in$_FILES. That should get you moving again. – The Maniac Feb 24 '12 at 17:30