Welcome Guest, Not a member yet? Register   Sign In
[HELP] upload
#1

[eluser]C_Line[/eluser]
i wan to upload a image

Code:
view
<input type = "file" name="file" id="file">

model
$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);

how to do ?


Messages In This Thread
[HELP] upload - by El Forum - 07-19-2012, 03:07 AM
[HELP] upload - by El Forum - 07-19-2012, 03:45 AM
[HELP] upload - by El Forum - 07-19-2012, 03:51 AM
[HELP] upload - by El Forum - 07-19-2012, 03:59 AM
[HELP] upload - by El Forum - 07-19-2012, 04:03 AM
[HELP] upload - by El Forum - 07-19-2012, 05:53 AM



Theme © iAndrew 2016 - Forum software by © MyBB