PHP实现简单的留言板功能
1、原理
简单的说就是 数据库的创建,添加数据,显示在前端上。我的程序只是简单的留言再显示。
首先写好留言的前端页面,就简单的写入作者,标题和内容。
2、界面:
3、显示留言的界面:
4、代码
(1)添加留言的页面
<!DOCTYPE HTML> <HTML><head> <Meta http-equiv="CONTENT-TYPE" ; content="text/HTML" ; charset="UTF-8"> <Title>留言</Title> <style type="text/CSS"> .message{ margin-top:0px; } h1{ margin-top:200px; } </style></head><Body> <h1 align="center">留言板</h1> <div class="message"> <form name="addform" ID="addform" method="post" action="message_handle.PHP"> <table type="text" align="center" border="1px,solID"> <input type="hIDden" ID="ID" name="ID" /> <tr> <td>标题</td> <td><input type="text" name="Title" ID="Title"/></td> </tr> <tr> <td>作者</td> <td><input type="text" name="author" ID="author"/> </td> </tr> <tr> <td>内容</td> <td><textarea name="message" ID="message" cols="60" role="15"></textarea></td> </tr> <tr> <td><input type="submit" name="sumbit"/></td> <td><input type="reset" name="reset"/></td> </tr> </table> </form> </div></Body></HTML>
(2)留言的后台处理,把作者,标题,内容存入建好的数据库中
<?PHPheader("CONTENT-TYPE:text/HTML;charset=UTF-8");define("HOST","127.0.0.1");define("USERname","root");define("PASSWORD","");if($con=new MysqLi(HOST,USERname,PASSWORD,"test")){ echo $con->error;}if($con->select_db("messageboard")){ echo $con->error;}if($con->query("SET nameS utf8")){ echo $con->error;}$ID=$_POST["ID"];$Title=$_POST["Title"];$author=$_POST["author"];$message=$_POST["message"];$time=date('y-m-d h:m:s');$sql="insert into messageboard(ID,Title,author,message,dateline) values('$ID','$Title','$author','$message','$time')";if($str=$con->query($sql)){ echo "<script>alert('留言成功');window.location.href='show_message.PHP'</script>";}else { echo "<script>alert('留言失败');window.location.href='messageboard.PHP'</script>";}?>
(3)下面是显示留言的页面代码
<?PHPheader("CONTENT-TYPE:text/HTML;charset=UTF-8");define("HOST","127.0.0.1");define("USERname","root");define("PASSWORD","");if($con=new MysqLi(HOST,USERname,PASSWORD,"test")){ echo $con->error;}if($con->select_db("messageboard")){ echo $con->error;}if($con->query("SET nameS utf8")){ echo $con->error;}$sql="select * from messageboard ORDER BY dateline DESC ";$str=$con->query($sql);if($str && MysqLi_num_rows($str)){ while($row= MysqLi_fetch_assoc($str)){ $data[]=$row; }}?><!DOCTYPE HTML><HTML><head> <Meta http-equiv="CONTENT-TYPE" ; content="text/HTML" ; charset="UTF-8"> <Title>留言板</Title> <style type="text/CSS"> </style></head><Body><div> <?PHP if(empty($data)){ echo "当前没有留言"; } else{ foreach($data as $value) { ?> <table cellpadding="2" cellspacing="8" align="center" border="1px,solID"> <tr> <td>标题</td> <td><?PHP echo $value['Title']; ?></td> </tr> <tr> <td>作者</td> <td><?PHP echo $value['author']; ?></td> </tr> <tr> <td>内容</td> <td><?PHP echo $value['message']; ?></td> </tr> <tr> <td><?PHP echo $value['dateline'];;?></td> </tr> </table></div><?PHP }}?></Body></HTML>
5、所遇到的问题
刚开始显示页面上不能显示数据,找了半天原因,结果是因为在sql中写错了查询方式写成了:
select * from message where dateline desc;
用where得有条件,才能查询到。得有例如:
select * from message where dateline=$date;
因为我的程序没有从前个页面传递数据到这,所以只能用下面这种通过时间来排序罗列出所有数据。
select * from message order by dateline;
感谢大家的阅读,以上代码有不足的地方请大家指出,希望大家可以有所收获。
本文转载自:https://blog.csdn.net/jeak2015/article/details/53440522
推荐教程:《PHP教程》 总结
以上是内存溢出为你收集整理的php实现简单的留言板功能(附源码)全部内容,希望文章能够帮你解决php实现简单的留言板功能(附源码)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)