首页 > 作文

PHP+MySql实现一个简单的留言板

更新时间:2023-04-08 22:05:07 阅读:3 评论:0

跟着书学的,代码不是自己写的,但是都能理解,有时间自己去写个好看一点的吼吼吼~(不熟练花了一天的时间…

留言板是接触web开发的基础,写一个留言板需要知道前端的一些基础标签,对数据库有一个了解会基础sql语言,php基础知识,前段基础+数据库基础+php基础=>留世界上最快的车言板。

前方高能哇(界面真的是吃藕诶…

先建一个数据库,数据库里有两张表,一个存账号密码,一个存留言信息

//创建数据库,里面有两张表admin和messagecreate databa gbook;//创建admin表,记录用户名和密码create table admin(  urname varchar(20) not null,  urpass varchar(20) not null);//创建message表,记录留言的id,留言人,留言日期,留言内容以及回复create table message(  id int(4) not null auto_increment primary key,  author varchar(20) not null,  addtime datetime not null,  content varchar(1000) not null,  reply varchar(1000) not null);

首先实现用户留言的部分,这是第一步,没有留言index页面就空了嘛~

<!-- 1.用户填写留言部分 nd.php --><!-- 可以首先编写nd页面,只有用户提交了留言才能进行后面的留言显示,留言管理等等 --> <?php  $name = $_post["name"];//从input里面传过来的name  //看用户是否提交了新留言,如果提交了,则写入表message  if( $name != ""){    $content = $_post["content"];    //下面的代码用于获得当前日期和时间    $addtime = date("y-m-d h:i:s");//得到日期    $link = mysqli_connect("127.0.0.1","root","vmorish");//php连接数据库    if( $link)      echo "ok!<br>";    el {      echo "bad!<br>";    }    mysqli_lect_db($link,"gbook")成语对对子;//选择数据库    $inrt = "inrt into message(author,addtime,content,reply) values('$name','$addtime','$content','')";    mysqli_query($link,$inrt);    mysqli_clo($link);    echo "<script language=javascript>alert('留言成功!单击确定查看留言.');location.href='index.php';</script>";  }  mysqli_clo($link);  ?> <html> <head>  <title>欢迎来到陈雨情的留言本吼吼吼</title></head> <body>  <!-- border-collap:collap合并表格的边框 -->  <table border=1 cellspacing=0 cellspadding=0 style="border-collap:collap" align=center width=400 bordercolor=black>    <tr>      <td height=100 bgcolor=#6c6c6c>        <font style="font-size:30px" color=#ffffff face="黑体">欢迎来到×××的留言本吼吼吼</font>      </td>    </tr>    <tr>      <td height=25>        <a href=nd.php>[我要写留言]</a>        <a href=login.php>[管理留言]</a>      </td>    </tr>    <tr>      <td height=200>        <form method="post" action="nd.php">          <table border="1" width="95%" id="table1" cellspacing="0" cellpadding="0" bordercolor="#808080" style="border-collap:collap" height="265">            <tr>              <td colspan="2" height="29">                <p align="center">欢迎填写你的留言</p>              </td>            </tr>            <tr>              <td width="32%">                <p align="right">你的名字</p>              </td>              <td width="67%">                <input type="text" name="name" size="20">              </td>            </tr>            <tr>              <td width="32%">                <p>留言内容</p>              </td>              <td width="67%">                <textarea rows="10" name="content" cols="31"></textarea>              </td>            </tr>            <tr>              <td width="99%" colspan="2">                <p align="center">                  <input type="submit" value="提交" name="b1">                </p>              </td>            </tr>          </table>        </form>      </td>    </tr>    <tr&惊慌失措造句gt;      <td height=80 bgcolor=#6c6c6c align=center>        <font color="#ffffff">          版权所有:<a href="/d/file/titlepic/cherish0222" rel="external nofollow" rel苏大教服集团="external nofollow" rel="external nofollow" >vmorish</a><br>          e-mail:vmorish@163.com        </font>      </td>    </tr>  </table> </body> </html>

效果:

接着就可以上主页面了

<!-- 2.留言本首页 index.php --><!-- 本页面显示十条最近的的留言,并且有分页功能 --><html> <head>  <title>欢迎来到陈雨情的留言本吼吼吼</title>  <style type="text/css">    td{      font-size: 12px;      line-height: 150%;    }  </style></head> <body>  <table border=1 cellspacing=0 cellspadding=0 style="border-collap:collap" align=center width=400 bordercolor=black height=382>    <tr>      <td height=100 bgcolor=#6c6c6c style="font-size:30px;line-height:30px">        <font color=#ffffff face="黑体">欢迎来到×××的留言本吼吼吼</font>      </td>    </tr>    <tr>      <td height=25>        <a href=nd.php>[我要写留言]</a>        <a href=login.php>[管理留言]</a>      </td>    </tr>    <tr>      <td height=200>        <?php          $link = mysqli_connect("127.0.0.1","root","vmorish");          mysqli_lect_db($link,"gbook");          $query = "lect * from message";          $result = mysqli_query($link,$query);          if( mysqli_num_rows($result) < 1){            echo "目前数据表中还没有任何留言!";          }el{            $totalnum = mysqli_num_rows($result);//获取数据库中所有数据条数            $pagesize = 7;//每页显示7条            $page = $_get["page"];            if( $page == ""){              $page = 1;            }            $begin = ($page-1)*$pagesize;            $totalpage = ceil($totalnum/$pagesize);            //输出分页信息            echo "<table border=0 width=95%><tr><td>";            $datanum = mysqli_num_rows($result);            echo "共有".$totalnum."条留言,每页".$pagesize."条,共".$totalpage."页。<br>";            //输出页码            for( $i = 1; $i <= $totalpage; $i++){              echo "<a href=index.php?page=".$i.">[".$i."]<疾风知劲草 板荡识诚臣/a>";            }            echo "<br>";            //从message表中查询当前页面所要显示的留言,并根据时间排序            $query = "lect * from message order by addtime desc limit $begin,$pagesize";            $result = mysqli_query($link,$query);            $datanum = mysqli_num_rows($result);            //循环输出所有留言,如果管理员已经回复则同时输出回复            for( $i = 1; $i <= $datanum; $i++){//$datanum???              $info = mysqli_fetch_array($result);              echo "->[".$info['author']."]于".$info['addtime']."说:<br>";              echo "".$info['content']."<br>";              if( $info['reply'] != ""){                // <b></b>显示粗体                echo "<b>管理员回复:</b>".$info['reply']."<br>";              }              echo "<hr>";            }//el结束            echo "</td></tr></table>";          }          mysqli_clo($link)         ?>      </td>    </tr>    <tr>      <td height=80 bgcolor=#6c6c6c align=center>        <font color="#ffffff">          版权所有:<a href="/d/file/titlepic/cherish0222" rel="external nofollow" rel="external nofollow" rel="external nofollow" >vmorish</a><br>          e-mail:vmorish@163.com        </font>      </td>    </tr>  </table> </body> </html>

效果:

接着管理员登录咯

<!-- 3.管理员登录页面 login.php --><!-- 供管理员登录 --><!-- 体会ssion实现用户登录的方法 --> <?php  $name = $_post["name"];  if( $name != ""){    $password = $_post['password'];    $link = mysqli_connect("127.0.0.1","root","vmorish");    mysqli_lect_db($link,"gbook");    $query = "lect * from admin where urname = '$name'";    $result = mysqli_query($link,$query);    if( mysqli_num_rows($result) < 1){      echo "该用户不存在,请重新登录!<br>";    }el{      $info = mysqli_fetch_array($result);      if( $info['urpass'] != $password){        echo "密码输入错误,请重新登录!<br>";      }el{        //如果用户名密码都正确,则注册一个ssion来标记其登录状态        echo "hhhh<br>";        ssion_start();        // $_ssion["login"] = "yes";        echo "<script language=javascript>alert('登录成功!');location.href='manage.php';</script>";      }    }    mysqli_clo($link);  } ?> <html> <head>  <title>欢迎来到陈雨情的留言本吼吼吼</title></heda> <body>   <table border=1 cellspacing=0 cellspadding=0 style="border-collap:collap" align=center width=400 bordercolor=black height="358">    <tr>      <td height=100 bgcolor=#6c6c6c style="font-size:30px;line-height:30px">        <font color=#ffffff face="黑体">欢迎来到×××的留言本吼吼吼</font>      </td>    </tr>    <tr>      <td height=25>        <a href=nd.php>[我要写留言]</a>        <a href=login.php>[管理留言]</a>      </td>    </tr>    <tr>      <td height=178>        <form method="post" action="login.php">          <table border="1" width="95%" id="table1" cellspcing="0" cellpadding="0" bordercolor="#808080" style="border-collap" height="154">            <tr>              <td colspan="2" height="29">                <p align="center">欢迎管理员登录</p>              </td>            </tr>            <tr>              <td width="32%">                <p align="center">用户名</p>              </td>              <td width="67%">                <input type="text" name="name" size="20">              </td>            </tr>            <tr>              <td width="32%">                <p align="center">密码</p>              </td>              <td>                <input type="password" name="password" size="20">              </td>            </tr>            <tr>              <td width="99%" colspan="2">                <p align="center"><input type="submit" value="登录" name="b1"></p>              </td>            </tr>          </table>        </form>      </td>    </tr>    <tr>      <td height=80 bgcolor=#6c6c6c align=center>        <font color="#ffffff">          版权所有:<a href="/d/file/titlepic/cherish0222" rel="external nofollow" rel="external nofollow" rel="external nofollow" >vmorish</a><br>          e-mail:vmorish@163.com        </font>      </td>    </tr>  </table> </body> </html>

效果:

manage.php和reply.php和前面类似,就不给出了(我也还没写好诶…但要实现的跟前面类似

最后注销登录

<!-- 6.注销登录页面 --><?php  ssion_start();  $_ssion["login"]="";  echo "已成功退出。[<a href=index.php>回首页</a>]";  exit; ?>

到此这篇关于php+mysql实现一个简单的留言板的文章就介绍到这了,更多相关php留言板内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

本文发布于:2023-04-08 22:05:05,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/e560057fd14409cd509debe45a8a9d89.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP+MySql实现一个简单的留言板.doc

本文 PDF 下载地址:PHP+MySql实现一个简单的留言板.pdf

标签:留言   留言本   吼吼   欢迎来到
相关文章
留言与评论(共有 0 条评论)
昵称:
匿名发表 登录账号
         
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图