Jump to content

[SOLVED] Forced download


graham23s

Recommended Posts

Hi Guys,

 

i have my force header download script working but was wondering a few things

 

<?php
// the includes...//////////////////////////////////////////////////////////////////
include("includes/db_connection.php");
include("includes/constants.php");

$xml_id = $_GET['id'];

// get the xml...///////////////////////////////////////////////////////////////////
$query1 = "SELECT * FROM `uploaded_xml` WHERE `id`='$xml_id'"; 
$result1 = mysql_query($query1);
$row = mysql_fetch_array($result1);     
$xml = $row['xml_file']; 

header('Content-Type: text/xml');
header('Content-Disposition: attachment; filename="uploads/'.$xml.'"');
readfile("uploads/$xml"); 
?>

 

is there anyway i can add more than 1 content type? also is it possible for me to add on a different extension before the download starts?

 

say if i don't want it to say file.xml but file.somethingelse is that possible?

 

thanks for any help guys

 

Graham

Link to comment
https://forums.phpfreaks.com/topic/54627-solved-forced-download/
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.