首页 > 后端开发 > php教程 > 这段代码一直有异常,麻烦大神看下

这段代码一直有异常,麻烦大神看下

PHP中文网
发布: 2023-02-28 14:24:02
原创
1033 人浏览过

<a href =&#39;index.php&#39; >返回留言板</a><hr><hr>
<?php
/*

 * To change the template for this generated file go to

 * Window - Preferences - PHPeclipse - PHP - Code Templates

 */
require("conn.php");
 $user=$_POST[&#39;user&#39;];
 $title=$_POST[&#39;title&#39;];
$content=$_POST[&#39;content&#39;];
$sql_luck="insert into sny (id,user,title,content,lastDate)value(&#39;&#39;,&#39;$user&#39;,&#39;$title&#39;,&#39;$content&#39;,now())"	
 $sql="SELECT user FROM sny WHERE user=&#39;$user&#39;";
 $query =mysql_query($sql);
 $rows=mysql_fetch_array($query);
if((!empty($_POST[&#39;sub&#39;]))and($rows[&#39;user&#39;]==$user)){
//echo $content;
 	echo "<script>alert(&#39;用户已存在,请重新输入&#39;);location.href=&#39;add2.php&#39;</script>" ;exit;  
  mysql_free_result($query);exit;
 }
 else{
  mysql_query($sql_luck);
  echo"<script>alert(&#39;哟!成功!&#39;);location.href=&#39;index.php&#39;</script>";
  echo "插入成功";
 }
?>
<form action="add.php" method="post">
用户:<input type="text" name="user" value="请输入用户名" size="20" maxlength="10"/><br/>
标题:<input type="text" name="title" value="请输入内容" size="40" maxlength="40"/><br/>
内容:<textarea name="content" rows="10" cols="50" wrap="off">
text</textarea>
 <br/>
  <input type="submit" name="sub" value="Release"/><br/>
  <form/>
登录后复制

解决方案

你if判断仔细看看里边缕缕。好么?

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板