daydreamer Posted October 5, 2008 Share Posted October 5, 2008 i want to use php to download a text file which is created on the fly on another server. I know how to download files with a URL like this www.example.com/directory/fileone.txt But the file i am after has a URL like this www.example.com/directory/ , when i click the download link on the page the download prompt in my browser pops up. I have read on another site that they use code like this to force a download prompt and prevent displaying the contents of the file in the browser: <?php header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=\"my-data.txt\""); ?> So obviously the server i need the file from is using code like the above. Any ideas? Link to comment https://forums.phpfreaks.com/topic/127111-php-to-download-dynamic-files/ Share on other sites More sharing options...
daydreamer Posted October 5, 2008 Author Share Posted October 5, 2008 anyone? Link to comment https://forums.phpfreaks.com/topic/127111-php-to-download-dynamic-files/#findComment-657522 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.