ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WEBCONDDB/php_CondDB/utils/saveFileButton.php
Revision: 1.1
Committed: Fri Jun 29 07:53:08 2007 UTC (17 years, 10 months ago) by kdziedzi
Branch: MAIN
CVS Tags: V01-01-02, V01-01-01, V1_01_00, V01-01-00, V1_00_01, HEAD
Log Message:
Introducing new order in project

File Contents

# User Rev Content
1 kdziedzi 1.1 <?php
2    
3     header("Content-type: application/force-download");
4     header("Content-Transfer-Encoding: Binary");
5     header("Content-disposition: attachment; filename=\"".$_POST['fileName']."\"");
6     $name = $_POST['fileName'];
7     echo $_SESSION[$name];
8    
9    
10     ?>