HTML表单提交后,要怎么写php端语言才能保存到txt文本中呢?
比如,我的服务器现在根目录有index.php, save.txt, welcome.php 三个文件,index.php中代码是这样的
<html> <body> <form action="welcome.php" method="post"> Name: <input type="text" name="name"><br> E-mail: <input type="text" name="email"><br> <input type="submit"> </form> </body> </html>
我要在welcome.php中怎么写才能把用户提交的数据保存到save.txt中?
谢谢大家,我比较笨
风之子ccf