私は自分のウェブサイトにこのコードを持っています:
<form name="form" method="post">
<input type="text" name="text_box" size="50"/>
<input type="submit" id="search-submit" value="submit" />
</form>
<?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);
}
?>
私がやりたいことは、既に t.txt がある場合、t2.txt を作成し、次に t3.txt などを作成するので、前の t のテキストを上書きしません。 。TXT。