Jump to content

Recommended Posts

if( $_POST['Download_button']=='Download' )

{

 

$part1 = 'http://testetc/pressservice//';

$part2 = $_POST['group1'];

$part3 = '.jpg';

$file = $part1 . $part2  .  $part3;

echo $file;

header("Pragma: public");

header("Expires: 0");

header("Cache-Control: must-revalidate, post-check=0, pre-check=0");

header("Content-Type: application/force-download");

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

header( "Content-Description: File Transfer");

@readfile($file);

 

can anyone tell me why the header code bits work if there at the top of the php script but dont if they are position as they are now or how i can fix this thanks

 

code works fine on its own if its at top with preset variables like file = "path of what file is"

spooke2k

 

Link to comment
https://forums.phpfreaks.com/topic/54970-solved-headers/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.