graham23s Posted June 7, 2007 Share Posted June 7, 2007 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 Quote Link to comment https://forums.phpfreaks.com/topic/54627-solved-forced-download/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.