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
******** 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