commit 7893f61398a5890a19a783510797b2093c8081d5 parent d605898a97a83629ab473a5f17c8221ac2b91dec Author: LennartSchroot <[email protected]> Date: Mon, 19 Jun 2023 00:07:14 +0200 download xml Diffstat:
M | Controller/hdata/hdata.php | 20 | +++++++++++--------- |
1 file changed, 11 insertions(+), 9 deletions(-)
diff --git a/Controller/hdata/hdata.php b/Controller/hdata/hdata.php @@ -1,21 +1,23 @@ <?php -function make_table(){ +function make_table() { $key = new Key(); -header('Content-Type: application/xml'); if (isset($_GET['downloadXml'])) { + $filename = 'weather_data.xml'; // Specify the filename for the downloaded XML file + // Set the appropriate headers for file download + header('Content-Type: application/xml'); + header('Content-Disposition: attachment; filename="' . $filename . '"'); + + // Retrieve the XML data $humidityXml = $key->retrieveHumidityTable('ae9c50dc5cd58c538a0d6aedb17fffedcaffd568d22381dab3ae72baaeb24684', true); $hDataXml = $key->retrieveHData('ae9c50dc5cd58c538a0d6aedb17fffedcaffd568d22381dab3ae72baaeb24684', true); - echo '<?xml version="1.0" encoding="UTF-8"?>' + // Output the XML data directly to the browser echo "<weather><humidity>$humidityXml</humidity><hdata>$hDataXml</hdata></weather>"; - - exit(); - } - else{ - echo '<?xml version="1.0" encoding="UTF-8"?>' - echo $key->retrieveHData('3jvl/yb?sRr80s6lTdeOyxV9VTQZkCPRp/bKOWKFWxfL2vhsU4Hhpgcmz9qe0zEk'); + exit(); + } else { + return $key->retrieveHData('3jvl/yb?sRr80s6lTdeOyxV9VTQZkCPRp/bKOWKFWxfL2vhsU4Hhpgcmz9qe0zEk'); } } ?>