0

我想要一个页面,我可以在其中将文本输入到输入表单中,然后将该文本插入到文本文件中的适当位置。

例如,输入表单将有 2 个输入表单字段: 1. 多少比萨饼?2. 哪个城市?

它将更新一个文本文件,上面写着:

(2)中有(1)个 比萨饼。

纽约有 5 个披萨

很简单,但是我该怎么做呢?

4

2 回答 2

0

使用 JSON。它可以让您轻松地编辑数据(而且因为它很酷)。

if ( empty( $_POST['pizzaCount'] ) === false && empty( $_POST['city'] ) === false )
{
   $savePath = 'folder/folder2/save.txt';
   $content = array();

   //does the file already exist?
   if ( ( $fileContents = file_get_contents( $savePath ) ) !== false )
   {
      //get the old data
      $content = json_decode( $fileContents , true );
   }
   //add the new data
   $content[] = array( 'pizzaCount' => $_POST['pizzaCount'] , 'city' => $_POST['city'] );

   //decode the new data
   $content = json_encode( $content );
   file_put_contents( $savePath , $content );

}
于 2013-01-02T01:37:22.720 回答
0

PHP:

<?php
file_put_contents('file.txt', 'There are ' . $_POST['pizzas'] . ' pizzas in ' . $_POST['city']);
?>

HTML:

<form action="script.php" method="POST">
  Pizzas: <input type="text" name="pizzas"><br />
  City: <input type="text" name="city"><br />
  <input type="submit" value="Save">
</form>
于 2013-01-02T01:32:23.210 回答