dsbtwy1329 2015-07-01 09:37
浏览 961
已采纳

如何将HTML格式的表单数据保存为txt文件。

My program uses PHP to open a list of configuration settings from a txt file called "configurationSettings.txt" and puts the data from it onto a form.

What I'm trying to figure out is how to enable my program to update the data on the original txt file if the user changes anything through the form.

Here is an example of the txt file data:

Channel 7
4.0000
6.0000

Here is my code that reads the data and fills my form:

<?php
$configFile = fopen("configurationSettings.txt", "r");
$title1 = fgets($configFile);
$gain1 = fgets($configFile);
$offset1 = fgets($configFile);
fclose($configFile);
?> 

<form action="program.php" method="post">
Channel 8 Title:<br>
<input type="text" name="channel0Title" value="<?php echo $title1 ?>">
<br>
Gain:<br>
<input type="text" name="channel0Gain" value="<?php echo $gain1 ?>">
<br>
Offset:<br>
<input type="text" name="Channel0Offset" value= "<?php echo $offset1 ?>">
<br>
<input type="submit" id ="submitButton" value="Submit">
</div>
</form>

And heres a picture of what it looks like:

enter image description here

What do I do to update the original txt file by pressing the submit button?

  • 写回答

2条回答 默认 最新

  • dousong1992 2015-07-01 09:45
    关注

    Tested, works 100%. You don't have to create .txt. Gets created automatically if not present.

    index.html

    <form action="program.php" method="post">
        Channel 8 Title:<br><input type="text" name="channel0Title" value="Channel 7"><br>
        Gain:<br><input type="text" name="channel0Gain" value="4.000"><br>
        Offset:<br><input type="text" name="channel0Offset" value= "6.000"><br>
        <input type="submit" id ="submitButton" value="Submit">
    </form>
    

    program.php

    <?php
        $title = $_POST["channel0Title"]; //You have to get the form data
        $gain = $_POST["channel0Gain"];
        $offset = $_POST["channel0Offset"];
        $file = fopen('configurationSettings.txt', 'w+'); //Open your .txt file
        ftruncate($file, 0); //Clear the file to 0bit
        $content = $title. PHP_EOL .$gain. PHP_EOL .$offset;
        fwrite($file , $content); //Now lets write it in there
        fclose($file ); //Finally close our .txt
        die(header("Location: ".$_SERVER["HTTP_REFERER"]));
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题