Download files to local computer

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tanyali
    New Member
    • Feb 2007
    • 43

    #1

    Download files to local computer

    using php5, I download files :

    ******** downloadfile.ph p
    $fileContent = @mysql_result($ result1,$i,"gda ta");

    $ourFileName = "$gribname" ;
    $ourFileHandle = fopen($ourFileN ame, 'w') or die("can't open file");
    fwrite($ourFile Handle, $fileContent);
    fflush($ourFile Handle);
    fclose($ourFile Handle);
    *********

    but the file downloaded to the same directory with this downloadfile.ph p page,
    how to specify a directory for the files downloaded ??
    and all these files go to the computer in which the php pages in, how to download files to local computer and download them to a certain directory specified by user.

    many thanks.
    Tanya
Working...