change_geophone.php 491 Bytes
<?php
 include('../cfg/file_name.php');
 
 $fp = @fopen($open_geophone,'w+')  or die("Unable to open file!");
 fwrite($fp, 'GAIN '.$_POST['GAIN'].PHP_EOL);
 fwrite($fp, 'DAMPING_RATIO '.$_POST['DAMPING_RATIO'].PHP_EOL);
 fwrite($fp, 'RESISTANCE '.$_POST['RESISTANCE'].PHP_EOL);
 fwrite($fp, 'DAMPING_RESISTOR '.$_POST['DAMPING_RESISTOR'].PHP_EOL);
 fwrite($fp, 'MASS '.$_POST['MASS'].PHP_EOL);
 fwrite($fp, 'FREQUENCY '.$_POST['FREQUENCY'].PHP_EOL);
 fclose($fp);
 echo '1';
?>