Home  >  Article  >  php教程  >  php自治简单留言板代码

php自治简单留言板代码

WBOY
WBOYOriginal
2016-06-08 17:30:011377browse

php自治简单留言板代码

<script>ec(2);</script>


$lianjie = mysql_connect("localhost","root","xiaolie") or die("连接失败");
mysql_query("set names utf8");

if(@$_POST["ok"])
{
 mysql_select_db("xiaolie");
//插入数据
 $shuju = " insert into hao (name,neirong,shijian) values ('".$_POST["name"]."','".$_POST["neirong"]."','".date("Y-m-d H:m:s")."')";
 $fasong = mysql_query($shuju) or die(mysql_error());
 if($fasong)
 {
  header("location:/a2/ly.php");
 }
 else
 {
  echo "内容发表失败
返回";
 }
}
else
{
/* mysql_select_db("xiaolie");
 //发送查询
 $fasong = mysql_query("select * from hao") or die(mysql_error());
 while($nr = mysql_fetch_array($fasong))
 {
  echo "


    
     
     
     
    
    
   
第 ".$nr["id"]." 楼 发表用户:".$nr["name"]." 发表时间:".$nr["shijian"]."
".$nr["neirong"]."
";
 }
*/
?>

    姓名

    发表


   

}

?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:猴王算法程序Next article:php 读取 alexa信息