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中?谢谢大家,我比较笨
2 回答
风之子ccf
TA贡献9条经验 获得超19个赞
首先接收post过来的参数
$post = $_POST;
对$post转化成json或者做序列化(选一个)
$new_post = json_encode($post); //转为json
$new_post = serialize($post); //序列化
存入save.txt(你最想知道的一步)
file_put_contents('./save.txt',$new_post,FILE_APPEND);
That`s all !
- 2 回答
- 2 关注
- 2160 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消