diff options
Diffstat (limited to 'download.php')
-rwxr-xr-x | download.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/download.php b/download.php new file mode 100755 index 0000000..cc2a8f3 --- /dev/null +++ b/download.php @@ -0,0 +1,47 @@ +<?php +echo "connection sucessful"; +$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"; + +$response = array(); + + if ( $netlistval == null ) { + $response['status'] = 'error'; + $response['message'] = 'This failed'; + } /*else ( $netlistval !== null ) { + $response['status'] = 'success'; + $response['message'] = 'This was successful'; + + + } */ + +// echo json_encode($response); + + + + +/*------------------------------------------------------------------------------------------------------------------------------------------------- +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('netlist.txt'); + exit; */ + + + + + + + +echo "file download start"; + +?> |