style>
textarea{
resize: none;
border: 2px solid #000;
outline: none;
}
input{
margin-top: 15px;
width: 80px;
height: 30px;
border: none;
outline: none;
color: #fff;
background-color: orange;
}
/style>
form action="4.php" method="post">
textarea name="text" id="" cols="30" rows="10">/textarea>
div>input type="submit" name="btn" value="发表">/div>
/form>
?php
// 方法一
$file=$_POST['text'];
$filename = date('Ymd',time()).'.txt';
$fh=fopen($filename,'a');
fwrite($fh,$file);
fclose($fh);
// 方法二
// file_put_contents('1.txt',$file);
?>