Welcome Guest, Not a member yet? Register   Sign In
[ask] download file
#1

[eluser]Unknown[/eluser]
hello all
want to ask the script to download files located in the folder uploads in CodeIgniter?? ..

help me..
#2

[eluser]smilie[/eluser]
Code:
<a href="path/to/files/located/in/folder/uploads/filename.ext">click</a>

Cheers,
Smilie
#3

[eluser]Cristian Gilè[/eluser]
If you want to download files all in one:
Code:
$this->load->helper('file');
$this->load->library('zip');

$files = get_filenames('path/to/uploads', TRUE);

foreach($files as $name)
{
   $this->zip->read_file($name);
}

$this->zip->download('my_backup.zip');


Cristian Gilè
#4

[eluser]Unknown[/eluser]
[quote author="Cristian Gilè" date="1295906361"]If you want to download files all in one:
Code:
$this->load->helper('file');
$this->load->library('zip');

$files = get_filenames('path/to/uploads', TRUE);

foreach($files as $name)
{
   $this->zip->read_file($name);
}

$this->zip->download('my_backup.zip');


Cristian Gilè[/quote]

thanks

coding for the view




Theme © iAndrew 2016 - Forum software by © MyBB