-1
I am using the following method to save an image, is working properly:
function do_upload()
{
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload())
{
$error = array('error' => $this->upload->display_errors());
$this->load->view('upload_form', $error);
}
else
{
$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success', $data);
}
}
However I would like before saving the image, pass its route to a variable, but it is giving error that I must convert there, I am new in CI if you can help me.
I tried to make:
$teste = $this->upload->data();
echo $teste;
If I make one foreach
will show all the paths I would need is to show only that specific.
The "route" would be the URL for the saved image?
– ShutUpMagda