blob: e6094dc6be22fe45e2eec030d423bc56a4ea40f2 [file] [log] [blame]
Derek Jones8ede1a22011-10-05 13:34:52 -05001###############
2Download Helper
3###############
4
5The Download Helper lets you download data to your desktop.
6
7.. contents:: Page Contents
8
9Loading this Helper
10===================
11
12This helper is loaded using the following code
13
14::
15
16 $this->load->helper('download');
17
18The following functions are available:
19
20force_download('filename', 'data')
21==================================
22
23Generates server headers which force data to be downloaded to your
24desktop. Useful with file downloads. The first parameter is the **name
25you want the downloaded file to be named**, the second parameter is the
26file data. Example
27
28::
29
30 $data = 'Here is some text!';
31 $name = 'mytext.txt';
32 force_download($name, $data);
33
34If you want to download an existing file from your server you'll need to
35read the file into a string
36
37::
38
39 $data = file_get_contents("/path/to/photo.jpg"); // Read the file's contents
40 $name = 'myphoto.jpg';
41 force_download($name, $data);
42