Home > php教程 > PHP源码 > body text

php自治简单留言板代码

WBOY
Release: 2016-06-08 17:30:01
Original
1382 people have browsed it

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"]."
";
 }
*/
?>

    姓名

    发表


   

}

?>

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!