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

[eluser]Chilukuri Bhaskar[/eluser]
Hi friends

How to move uploaded files to specific folder. I am facing problem with file uploading
please help me

thanks
Bhaskar
#2

[eluser]anstrangelover[/eluser]
here is the code sample

[code] if (is_uploaded_file($_FILES['file']['tmp_name'])Wink {
$file_detail = $_FILES['file'];
$this->load->helper('string');
$filename = random_string() . '.' . array_pop(explode('.', $file_detail['name']));
move_uploaded_file($_FILES['file']['tmp_name'], './uploads/' . $filename);
}[/c
any question you wanna ask is most welcome.




Theme © iAndrew 2016 - Forum software by © MyBB