#效果如下
#接下来我们就该写发布的页面以及PHP代码了
fabu.html
<head> <meta charset="utf-8"> <title>fabu</title> </head> <body> <form method="POST" action="fabu.php"> <h1>发布信息<h1> <a href="https://www.jb51.net/003.php" >主页面</a> <div>接收人:<input type="text"> </select> </div> </select> </div> <br/> <div> 信息内容:<textarea input type="text"></textarea> </div><br/> <input type="submit" value="发送"> </form>
fabu.php
<?php session_start(); header("Content-type: text/html; charset=utf-8"); global $user; $re=$_POST["recever"];//获取recever $comment=$_POST["neirong"];//获取留言 @date_default_timezone_set(PRC);//将数组变为字符串函数 $time=date("Y-m-d G:i:s");//获取时间,G为24小时制 $_SESSION["username"]=$user;//开启session $user1=implode("",$_SESSION);//将数组转为字符串 $link=mysqli_connect("localhost","root","","liuyan");//连接数据库 mysqli_query($link,"set names utf8"); $sql="insert into text(sender,recever,comment,time) values('$user1','$re','$comment','$time')"; $result=mysqli_query($link,$sql);//执行语句 $sql1="insert into friend(me,friend) values('$user1','$re')";//将me,friend存入数据库 $result=mysqli_query($link,$sql1);//执行语句 if($recever=""||$comment="") { echo "<script>alert('发布失败!');window.location='https://www.jb51.net/fabu.html';</script>"; } else { echo "<script>alert('发布成功!');window.location='https://www.jb51.net/fabu.html';</script>"; } ?>
#效果如下
#最后是退出系统
<?php session_start(); unset($_SESSION["uesrname"]); echo "<script>alert('退出成功!');window.location='denglu.html';</script>"; ?>
#效果如下
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP+MySQL留言板开发专题》、《php缓存技术总结》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《PHP错误与异常处理方法总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》