Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Am trying to upload an image and save the images full path in my images table but i dont know how to get the full path it out of the $this->upload->data() array this is my code below.

//assigns the user's sessioned id to the variable $user_id

$user_id = $this->session->userdata('user_id');

//sets rules for the image that is being uploaded
$config['overwrite'] = FALSE; //does not overwrite any image adds +1 instead
$config['encrypt_name'] = FALSE; //encrypts the images name
$config['remove_spaces'] = TRUE; //removes spaces from the images name
$config['file_name'] = $user_id."_0.jpg";/*gives the image a new name combination of the user's id and a number*/
$config['upload_path'] = './uploads'; // the uploaded images path
$config['allowed_types'] = 'jpg|png';/*types of image extentions allowed to be uploaded*/
$config['max_size'] = '2048';// maximum file size that can be uploaded (2MB)

if ( ! is_dir($config['upload_path']) ) /* this checks to see if the file path is wrong or does not exist.*/
    die("THE UPLOAD DIRECTORY DOES NOT EXIST"); // error for invalid file path

$this->load->library('upload',$config); /* this loads codeigniters file upload library*/
//this checks for errors incase the image upload breaks a set rule.
if (! $this->upload->do_upload() ) {
    echo "UPLOAD ERROR ! ".$this->upload->display_errors(); //image error
}
else {
    // success message to show that the image was successfuly uploaded.
    echo "THE IMAGE HAS BEEN UPLOADED : "; var_dump($this->upload->data() );
}
share|improve this question

2 Answers

All i needed to do was to stor the array $this->upload->data(); in a variable for example

$image_info = $this->upload->data();

and from the $image_info variable i can access the images properties like so.

$image_info['full_path'];
$image_info['file_name'];

Thank you all who made an effort in helping me. God bless you. thanks. i hope this helps anyother person who encouncters problems as such.

share|improve this answer

You should be seeing in the dump for $this->upload->data() the following array:

Array
(
    [file_name]    => mypic.jpg
    [file_type]    => image/jpeg
    [file_path]    => /path/to/your/upload/
    [full_path]    => /path/to/your/upload/jpg.jpg
    [raw_name]     => mypic
    [orig_name]    => mypic.jpg
    [client_name]  => mypic.jpg
    [file_ext]     => .jpg
    [file_size]    => 22.2
    [is_image]     => 1
    [image_width]  => 800
    [image_height] => 600
    [image_type]   => jpeg
    [image_size_str] => width="800" height="200"
)

So you can simply use something like:

if ($uploaded_image = $this->upload->do_upload() ){
    // success message to show that the image was successfuly uploaded.
    echo "THE IMAGE HAS BEEN UPLOADED : ";
    $full_path = $uploaded_image['full_path'];
} else {
    echo "UPLOAD ERROR ! ".$this->upload->display_errors();//image error
}
share|improve this answer
That didnt even show a thing! the image was uploaded but the full path didnt show. – Daniel Barde Jan 20 '12 at 15:47
So which part of the if statement did it end up in? – simnom Jan 20 '12 at 15:54
if ($uploaded_image = $this->upload->do_upload() ){ // success message to show that the image was successfuly uploaded. echo "THE IMAGE HAS BEEN UPLOADED : "; – Daniel Barde Jan 20 '12 at 15:55
the image uploaded quit alright but the variable $full_path when echoed showed nothing. – Daniel Barde Jan 20 '12 at 15:56
What if you: print_r($uploaded_image); – simnom Jan 20 '12 at 16:02
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.