web_AI-3/export_offer.php

9 lines
278 B
PHP
Raw Normal View History

<?php
include 'functions.php';
2017-03-07 21:12:04 +01:00
//add an XML header to the output
header('Content-type: text/xml');
2017-03-07 21:12:04 +01:00
//prompt the browser to download the output as a file called offer.xml
2017-03-06 22:44:08 +01:00
header('Content-Disposition: attachment; filename="offer.xml"');
export_offer();
?>