ASCII码 ASCII码

php PHP实现基本留言板功能原理与步骤详解

发布于:2022-03-26 09:52:15  栏目:技术文档
  1. 这篇文章主要介绍了PHP实现基本留言板功能,结合实例形式分析了PHP实现基本留言板功能的相关原理、数据库构建、功能实现等步骤与相关操作技巧,需要的朋友可以参考下
  2. 本文实例讲述了PHP实现基本留言板功能的方法。分享给大家供大家参考,具体如下:
  3. 作为一个PHP的初学者,我试着写了一个留言板,页面有点丑,多多见谅,嘻嘻嘻
  4. #我们写留言板需要用到数据库,所以我们先要建立三个表
  5. user表
  6. friend表
  7. text表
  8. #首先需要写一个注册与登录
  9. ##注册
  10. zhuce.htmlb
  1. <meta charset="utf-8">
  2. <title>zhuce</title>
  3. </head>
  4. <body>
  5. <form method="POST" action="zhuce.php">
  6. <div style="margin-left: 500px;margin-top:200px;height: 250px;width: 250px">
  7. <h1>用户注册页面</h1>
  8. 用户名:<input type="text" name="username">
  9. <div>密&nbsp;&nbsp;&nbsp;码:<input type="password" name="password">
  10. <div><input type="submit" name="submit" value="注册"></div>
  11. </div>
  12. </form>
  13. </body>
  1. zhuce.php
  1. <?php
  2. session_start();
  3. header("Content-type: text/html; charset=utf-8"); //处理数据库用户名乱码
  4. $user=$_POST["username"];
  5. $pwd=$_POST["password"];
  6. if($user==""||$pwd=="")
  7. {
  8. echo "<script>alert('请确认信息完整性!'); history.go(-1);</script>";
  9. }
  10. else
  11. {
  12. $link=mysqli_connect("localhost","root","","liuyan");//连接数据库
  13. mysqli_query($link,"set names utf8");
  14. $sql="select username from user where username='$_POST[username]'";
  15. $result=mysqli_query($link,$sql);//执行sql语句
  16. $num=mysqli_num_rows($result);//统计执行结果影响的行数
  17. if($num)//如果存在该用户
  18. {
  19. echo "<script>alert('用户名已存在!'); history.go(-1);</script>";
  20. }
  21. else//注册新用户
  22. {
  23. $sql_insert="insert into user (username,password)values('$_POST[username]','$_POST[password]')";
  24. $res_insert=mysqli_query($link,$sql_insert);
  25. if($res_insert)
  26. {
  27. echo "<script>alert('注册成功!');window.location='denglu.html';</script>";
  28. }
  29. else
  30. {
  31. echo "<script>alert('系统繁忙请重试!'); history.go(-1);</script>";
  32. }
  33. }
  34. }
  35. ?>
  1. ##登录
  2. ```php
  3. <head>
  4. <meta charset="utf-8">
  5. <title>denglu</title>
  6. </head>
  7. <body>
  8. <form method="POST" action="denglu.php">
  9. <div style="margin-left: 500px;margin-top:200px;height: 250px;width: 250px">
  10. <h1>用户登录页面</h1>
  11. 用户名:<input type="text" name="username">
  12. <div>密&nbsp;&nbsp;&nbsp;码:<input type="password" name="password"></div><br/>
  13. <input type="submit" name="submit" value="登录">
  14. <a href="zhuce.html" rel="external nofollow" >注册</a>
  15. </div>
  16. </form>
  17. </body>
  18. ``````objective-c
  19. denglu.php
  20. ``````php
  21. denglu.php
  22. ``````objective-c
  23. <?php
  24. session_start();
  25. header("Content-type: text/html; charset=utf-8");
  26. global $user;
  27. $re=$_POST["recever"];//获取recever
  28. $comment=$_POST["neirong"];//获取留言
  29. @date_default_timezone_set(PRC);//将数组变为字符串函数
  30. $time=date("Y-m-d G:i:s");//获取时间,G为24小时制
  31. $_SESSION["username"]=$user;//开启session
  32. $user1=implode("",$_SESSION);//将数组转为字符串
  33. $link=mysqli_connect("localhost","root","","liuyan");//连接数据库
  34. mysqli_query($link,"set names utf8");
  35. $sql="insert into text(sender,recever,comment,time) values('$user1','$re','$comment','$time')";
  36. $result=mysqli_query($link,$sql);//执行语句
  37. $sql1="insert into friend(me,friend) values('$user1','$re')";//将me,friend存入数据库
  38. $result=mysqli_query($link,$sql1);//执行语句
  39. if($recever=""||$comment="")
  40. {
  41. echo "<script>alert('发布失败!');window.location='fabu.html';</script>";
  42. }
  43. else
  44. {
  45. echo "<script>alert('发布成功!');window.location='fabu.html';</script>";
  46. }
  47. ?>
相关推荐
阅读 +