13 lines
422 B
PHP
Executable File
13 lines
422 B
PHP
Executable File
<title>master</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; padding: 20px; }
|
|
textarea { width: 400px; height: 150px; }
|
|
input[type="submit"] { padding: 10px 20px; font-size: 16px; cursor: pointer; }
|
|
</style>
|
|
|
|
<form action="post_data.php" method="POST">
|
|
<textarea name="data" placeholder="在这里输入数据..."></textarea>
|
|
<br>
|
|
<br>
|
|
<input type="submit" value="保存数据">
|
|
</form> |