从URL保存文本

时间:2014-05-30 14:51:33

标签: php url text save

我找到了这段代码。他在服务器上保存了一个文本文件 我想改变它而不是有一个textBox和按钮。 有可能撰写网址 例: www.example.com/index.php?writeText=text 在此代码中需要更改哪些内容才能执行此操作?

<html>
<body>
    <form name="form" method="post">
        <input type="text" name="text_box" size="50"/>
        <input type="submit" id="search-submit" value="submit" />
    </form>
</body>

<?php
    if(isset($_POST['text_box'])) { //only do file operations when appropriate
        $a = $_POST['text_box'];
        $myFile = "t.txt";
        $fh = fopen($myFile, 'w') or die("can't open file");
        fwrite($fh, $a);
        fclose($fh);
    }
?>

由于

1 个答案:

答案 0 :(得分:0)

您使用GET而不是POST。

<?php
    if(isset($_GET['writeText'])) { //only do file operations when appropriate
        $a = $_GET['writeText'];
        $myFile = "t.txt";
        $fh = fopen($myFile, 'w') or die("can't open file");
        fwrite($fh, $a);
        fclose($fh);
    }
?>