Current location: Hot Scripts Forums » Programming Languages » PHP » download jpg file in php


download jpg file in php

Reply
  #1 (permalink)  
Old 01-29-07, 12:50 AM
tamil tamil is offline
Newbie Coder
 
Join Date: Jan 2006
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Question download jpg file in php

hi

how to download jpeg file php script.

myscript is:
PHP Code:



  $file
="test.jpg";

  
$type="application/force-download";

  
header("Content-type:".$type);
  
header("Content-length:".filesize($file));
  
header("Content-disposition:attachment;filename:".$file);
  
header("Pragma:private");

  
$size=1024;

  
$fp=fopen($file,"r") or die("Error");

  while(!
feof($fp)){
    
$buf=fread($fp,$size) or die("Error");
    print 
$buf;    
  } 
but when this script it does not show filename in file saveAs window.
how would show filename in this window? pl hlp.

Last edited by Nico; 01-29-07 at 05:51 AM.
Reply With Quote
  #2 (permalink)  
Old 01-29-07, 03:33 AM
UnrealEd's Avatar
UnrealEd UnrealEd is offline
Community Liaison
 
Join Date: May 2005
Location: Antwerp, Belgium
Posts: 3,165
Thanks: 4
Thanked 25 Times in 25 Posts
you should replace the colon by an equal sign:
PHP Code:

header("Content-disposition:attachment;filename=".$file); 

UnrealEd
__________________
"Good judgement comes from experience, and experience comes from bad judgement." - Fred Brooks

Reply With Quote
  #3 (permalink)  
Old 01-30-07, 03:26 AM
tamil tamil is offline
Newbie Coder
 
Join Date: Jan 2006
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
hi its working. thanks
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP write to text file veeco Script Requests 2 02-10-10 02:48 PM
PHP file upload problem websmart PHP 1 07-19-06 03:44 AM
Upload Download File Management stiletto PHP 0 03-16-05 06:22 PM
move files around an ftp server, with php file upload script? wapchimp PHP 2 12-19-04 07:27 AM
Upload file to table so ONLY files tied to primary key are displayed in record? grafixDummy PHP 4 12-20-03 04:28 PM


All times are GMT -5. The time now is 05:52 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.