PHP文本框显示提交后的最后一个输入

时间:2015-04-01 23:22:14

标签: php forms input textbox

当我在文本框中创建一些输入(例如:test123)并且我提交页面时,它只显示空白输入。重新加载(页面刷新)文本" test123"以形式出现。当我尝试编辑以前输入的文本时,也会发生这种情况,例如:编辑" test123"输入" test12345"然后点击提交它将显示" test123"并在页面刷新" test12345"。

之后
echo '<form action="" method="post">';
$content = file_get_contents($file);
echo '<textarea style="width: 99.3%; height: 700px; margin-left:-1px" name="cfgtekst">'.htmlspecialchars($content).'</textarea>';
echo '<center><input type="submit" class="btn btn-primary confirm_t btn btn-sucess" value="'.$usavechange.'" />';
echo '<a href="serverdetalji.php?sid='.$serverid.'" class="btn btn-primary confirm_t btn btn-warning">'.$uotkazi.'</a></center>';
echo '</form>';

if(isset($_POST))
{
    $cfgtekst = $_POST['cfgtekst'];
    $stream_options = array('ftp' => array('overwrite' => true));
    $stream_context = stream_context_create($stream_options);
    if ($fh = fopen($file, 'w', 0, $stream_context))
    {
        fputs($fh, $cfgtekst);
        fclose($fh);
    }
}

1 个答案:

答案 0 :(得分:0)

新值仅在刷新后显示,因为您正在从文件中读取旧值,打印它,然后保存新值。颠倒顺序:

if(isset($_POST))
{
    $cfgtekst = $_POST['cfgtekst'];
    $stream_options = array('ftp' => array('overwrite' => true));
    $stream_context = stream_context_create($stream_options);
    if ($fh = fopen($file, 'w', 0, $stream_context))
    {
        fputs($fh, $cfgtekst);
        fclose($fh);
    }

}

echo '<form action="" method="post">';
$content = file_get_contents($file);
echo '<textarea style="width: 99.3%; height: 700px; margin-left:-1px" name="cfgtekst">'.htmlspecialchars($content).'</textarea>';
echo '<center><input type="submit" class="btn btn-primary confirm_t btn btn-sucess" value="'.$usavechange.'" />';
echo '<a href="serverdetalji.php?sid='.$serverid.'" class="btn btn-primary confirm_t btn btn-warning">'.$uotkazi.'</a></center>';
echo '</form>';
顺便说一下,我建议你节省一些时间并使用数据库;在Web应用程序中使用这样的文件非常容易出错。

另请注意,使用此代码,如果其他人以某种方式在保存时间之间偷偷摸摸另一篇帖子,然后读取文件,那么您将获得它们的价值。