私はこのコードを持っています:
<html>
<head>
<title>Chipperyman573</title>
<link rel="shortcut icon" href="/fav.ico" />
</head>
<body>
<form method="post" action="change.php">
Top: <input type="text" name="top" /><br>
Bottom: <input type="text" name="bottom" /><br>
Time (MS): <input type="text" name="time" /><br>
<input type="submit" value="Save" name="submit" />
</form>
</body>
</html>
<?php
if(isset($_POST['submit'])){
$fi = "/var/www/rtf/webR/top.txt";
file_put_contents($fi, $cont);
$cont = $_POST["top"];
}
?>
変更ページ (chipperyman573.com/rtf/webR/change.php) にアクセスしてフォームに入力し、[送信] をクリックすると、テキスト ファイルが自動的にクリアされます。なんで?
テキスト ファイルの現在の内容をクリアし、入力した内容に置き換えたい。