blob: cc2a8f3bf68a21a1d81fc8bad6396b0cd57f3dc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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";
?>
|