阿里云限量代金券 | 此广告位出租25元/月 |
这是一个通过html提交留言的php程序,可以适用于各种html模板,实现html页面留言功能。
留言板html代码
<!DOCTYPE HTML> <html> <head> <title>html+php留言板代码</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> </head> <body> <h2 class="major">留言</h2> <form method="post" action="liuyan.php"> <div class="fields"> <div class="field half"> <label for="name">称呼</label> <input type="text" name="name" id="name" /> </div> <div class="field half"> <label for="email">Email</label> <input type="text" name="email" id="email" /> </div> <div class="field"> <label for="message">编辑留言</label> <textarea name="message" id="message" rows="4"></textarea> </div> </div> <ul class="actions"> <li><input type="submit" value="发送" class="primary" οnclick='loction="chc_index.php"'/></li> <li><input type="reset" value="清空" /></li> </ul> </form> </body> </html>
留言板PHP代码,将文件保存为liuyan.php
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <html> <head> <title>提交成功!</title> </head> <body> <h2>提交成功!</h2><br /> <h2><a href="/">返回首页</a></h2> <?php if(isset($_POST['name'])&&isset($_POST['email'])&&isset($_POST['message'])){ $log=fopen("liuyan.txt","a"); fwrite($log,$_POST['name']."\r\n"); fwrite($log,$_POST['email']."\r\n"); fwrite($log,$_POST['message']."\r\n"); fclose($log); } ?> </body> </html>
留言内容保存在liuyan.txt里,不需要mysql数据库。
效果图:
推荐您阅读更多有关于“”的文章
Powered By Z-Blogphp
分享:
支付宝
微信