habeebnet Posted August 18, 2006 Share Posted August 18, 2006 Here's my file download script....[code]set_time_limit(0);$speed = 10;header("Cache-control: private");header('Content-Description: File Transfer'); header('Content-Type: application/force-download'); header('Content-Length: ' . filesize($fileLocation . $fileName)); header('Content-Disposition: attachment; filename=' . $fileName);if (!$file = fopen($fileLocation . $fileName, 'r')) { exit();}while (!feof($file)) { echo fread($file, $speed * 1024 * 8); flush(); sleep(1);}[/code]when this script runs, a file dialogue box will appear with a 'save' and 'cancel' button.. I'm looking for a way to set a variable (say $status=TRUE) TRUE when somebody clicks on save button. And when downlaods completes, the variable should set to FALSE.I trying to implement this for the last two days... but always the variable will set to to TRUE before i click 'Save'..Can anybody help me?Many Thanks-Hab- Link to comment https://forums.phpfreaks.com/topic/17961-set-a-variable-when-download-start/ Share on other sites More sharing options...
Caesar Posted August 18, 2006 Share Posted August 18, 2006 [quote author=habeebnet link=topic=104771.msg418073#msg418073 date=1155918407]I'm looking for a way to set a variable (say $status=TRUE) TRUE when somebody clicks on save button.[/quote]Javascript is your friend. ;-) Link to comment https://forums.phpfreaks.com/topic/17961-set-a-variable-when-download-start/#findComment-76986 Share on other sites More sharing options...
corbin Posted August 18, 2006 Share Posted August 18, 2006 A javascript variable and a php variable arent accessible to each other though... From what I understand youre tryin to do, Im not sure if its impossible or not but ive never seen it happen... Link to comment https://forums.phpfreaks.com/topic/17961-set-a-variable-when-download-start/#findComment-76988 Share on other sites More sharing options...
tomfmason Posted August 18, 2006 Share Posted August 18, 2006 I agree. I have not seen this. I wish this were possible. I am interested in doing this my self. Link to comment https://forums.phpfreaks.com/topic/17961-set-a-variable-when-download-start/#findComment-76994 Share on other sites More sharing options...
corbin Posted August 18, 2006 Share Posted August 18, 2006 Hmm now that i think about it... It probably is impossible... Since a webserver has no way of knowing if your web client is downloading anything... Hmm but wait... maybe it does know since its a constant connection... Seems like it would almost take a packet sniffer lol... As far as I know its not a php function or anything... But I'm sure its possible... Link to comment https://forums.phpfreaks.com/topic/17961-set-a-variable-when-download-start/#findComment-77000 Share on other sites More sharing options...
ryanlwh Posted August 18, 2006 Share Posted August 18, 2006 while you can't possibly set a variabe within the same script from javascript, you can, however, use AJAX or set a cookie with javascript. but i haven't seen any javacript code to listen to file download dialogs, and if you output the javascript in this same script, it will be treated as the text content of the file... maybe use frames.as far as i know, jsp might be able to sniff packets :) Link to comment https://forums.phpfreaks.com/topic/17961-set-a-variable-when-download-start/#findComment-77041 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.