我要将当前输入数据存储在文本文件中,并从同一文件中获取数据。例如:在 form.php 我输入表单:
<form name="formData" method="POST" action="landing.php">
<p>NEW DATA:</p>
<input type="text" id="new" name="newdata" />
<p>CURRENT DATA:</p>
<input type="text" id="current" name="current" />
<input type="submit" name="Invia" Value="Invia i dati">
<input type="reset" id="reset" name="Reset" Value="Reset">
</form>
并在 landing.php 中我已经:
<?php
$newdata = $_POST['newdata'];
$current = $_POST['current'];
$file = 'box.xml';
$xml = file_get_contents($file);
$output = str_replace($current, $newdata, $xml);
file_put_contents($file, $output);
?>
如您所见,在提交当前数据和新数据后,xml文件将与新数据一起保存。
这是我的问题:
如何在提交后将 $ newdata 存储在文本文件中,它会在 form.php 中显示为 $ current ?< / p>
答案 0 :(得分:0)
在form.php上添加此代码
$file = 'box.xml';
$xml = file_get_contents($file);
在此之后,在CURRENT DATA下面添加
<input type="text" id="current" name="current" value="<?php echo $xml; ?>" />
修改强> 在Landing.php
<?php
$newdata = $_POST['newdata'];
$file = 'box.xml';
/* there is no need of this code
$current = $_POST['current'];
$xml = file_get_contents($file);
$output = str_replace($current, $newdata, $xml);*/
file_put_contents($file, $newdata);
?>