summaryrefslogtreecommitdiff
path: root/views/Redundant/download.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/Redundant/download.php')
-rw-r--r--views/Redundant/download.php58
1 files changed, 0 insertions, 58 deletions
diff --git a/views/Redundant/download.php b/views/Redundant/download.php
deleted file mode 100644
index a0ecaf7..0000000
--- a/views/Redundant/download.php
+++ /dev/null
@@ -1,58 +0,0 @@
-<?php
-
-if (isset ($_POST["netlist"]))
-{
- $netlistval = $_POST["netlist"]; // for ajax
- //$netlistval = "CONTENT"; // without ajax
- $myfile = fopen("netlist.txt", "w") or die("Unable to open file!");
- fwrite($myfile, $netlistval);
- fclose($myfile);
-
-/*
-
- //echo "file written";
-
-
-
- if ( $netlistval == null ) {
- echo "fail";
- // $response['status'] = 'error';
- // $response['message'] = 'This failed';
- } else if ( $netlistval != null )
-{ echo "success";
- // $response['status'] = 'success';
- // $response['message'] = 'This was successful';
-
-
- }
-
- // echo json_encode($response);
-
- */
-}
-else
-{
-
-
-
-/*-------------------------------------------------------------------------------------------------------------------------------------------------
-FILE DOWNLOAD CODE PHP
--------------------------------------------------------------------------------------------------------------------------------------------------*/
- header('Content-Type: application/octet-stream');
- header('Content-Disposition: attachment; filename='.basename('netlist.txt'));
- header('Expires: 0');
- header('Cache-Control: must-revalidate');
- header('Pragma: public');
- header('Content-Length: ' . filesize('netlist.txt'));
- readfile('/var/www/html/eSIM/netlist.txt');
- exit;
-
-
-}
-
-
-
-
-//echo "file download start";
-
-?>