Jump to content

[SOLVED] headers


spooke2k

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.