summaryrefslogtreecommitdiff
path: root/views/Redundant/download.php
diff options
context:
space:
mode:
authorfahim-oscad2016-05-23 14:26:44 +0530
committerfahim-oscad2016-05-23 14:26:44 +0530
commit0930372f4634e26cb50f660ddf3cf8d8b6101b4d (patch)
treedf160eed68c08c0c132e008d224c7cf58a3dd1eb /views/Redundant/download.php
parent9774e308dc82314d953742c11847c880123bfa8f (diff)
downloadeSimWebApp-0930372f4634e26cb50f660ddf3cf8d8b6101b4d.tar.gz
eSimWebApp-0930372f4634e26cb50f660ddf3cf8d8b6101b4d.tar.bz2
eSimWebApp-0930372f4634e26cb50f660ddf3cf8d8b6101b4d.zip
Remove unwanted files And modified the github link and title
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";
-
-?>