用php,mysql制作留言板
我模仿师兄,做了一个简单的留言板,可以运行但是当提交成功后却无法自动显示到留言板的页面而是跳到了deal页面求解答。。。。代码如下,求高手指点!!谢了!SQL_exerc...
我模仿师兄,做了一个简单的留言板,可以运行 但是当提交成功后 却无法自动显示到留言板的页面 而是跳到了deal页面 求解答。。。。 代码如下,求高手指点!!谢了!
SQL_exercise.php:
<?php
require("deal.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>SQL练习</title>
</head>
<body>
<form action="deal.php" method="post">
<fieldset>
<legend align="center">留言栏</legend>
姓名:<input style="margin-left:10px" type="text" name="name" /><br/>
<div style="float: left">留言: </div>
<textarea style="float: left;margin-left:10px" cols="30" rows="10" name="comments"></textarea>
<div style="clear: both"></div>
<input style="margin-left:50px" type="submit" name="submit" value="提交留言" />
</fieldset>
</form>
<?php
while($comment=mysql_fetch_array($result_set)){
echo $comment['commmentsAuthor'].":".$comment['commentsContens']."<br /><br /><br />";
}
?>
</body>
</html>
<?php mysql_close($connection); ?>
deal.php:
<?php
//连接到数据库
$connection=mysql_connect("localhost","root","");
if(!$connection) die("数据库连接失败:".mysql_errno());
mysql_query("SET NAMES 'UTF8'");
//选择数据库
$select=mysql_select_db("sql_exercise",$connection);
if(!$select) die("数据库选择失败:".mysql_errno());
//操作数据库
if(isset($_POST['submit'])){
$sql_1="INSERT INTO `sql_exercise`.`comments` (
`commentsId` ,
`commmentsAuthor` ,
`commentsContens`
)
VALUES (
NULL , '{$_POST['name']}', '{$_POST['comments']}'
)";
$comment_set=mysql_query($sql_1);
if($comment_set){echo "<script>alert(\"留言成功!\");</script>";}
}
$sql_2 = "SELECT * FROM comments ORDER BY commentsId DESC";
$result_set=mysql_query($sql_2);
?> 展开
SQL_exercise.php:
<?php
require("deal.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>SQL练习</title>
</head>
<body>
<form action="deal.php" method="post">
<fieldset>
<legend align="center">留言栏</legend>
姓名:<input style="margin-left:10px" type="text" name="name" /><br/>
<div style="float: left">留言: </div>
<textarea style="float: left;margin-left:10px" cols="30" rows="10" name="comments"></textarea>
<div style="clear: both"></div>
<input style="margin-left:50px" type="submit" name="submit" value="提交留言" />
</fieldset>
</form>
<?php
while($comment=mysql_fetch_array($result_set)){
echo $comment['commmentsAuthor'].":".$comment['commentsContens']."<br /><br /><br />";
}
?>
</body>
</html>
<?php mysql_close($connection); ?>
deal.php:
<?php
//连接到数据库
$connection=mysql_connect("localhost","root","");
if(!$connection) die("数据库连接失败:".mysql_errno());
mysql_query("SET NAMES 'UTF8'");
//选择数据库
$select=mysql_select_db("sql_exercise",$connection);
if(!$select) die("数据库选择失败:".mysql_errno());
//操作数据库
if(isset($_POST['submit'])){
$sql_1="INSERT INTO `sql_exercise`.`comments` (
`commentsId` ,
`commmentsAuthor` ,
`commentsContens`
)
VALUES (
NULL , '{$_POST['name']}', '{$_POST['comments']}'
)";
$comment_set=mysql_query($sql_1);
if($comment_set){echo "<script>alert(\"留言成功!\");</script>";}
}
$sql_2 = "SELECT * FROM comments ORDER BY commentsId DESC";
$result_set=mysql_query($sql_2);
?> 展开
2个回答
展开全部
你的SQL_exercise.php提交表单是指向deal.php,肯定是跳到了deal页面
if($comment_set){echo "<script>alert(\"留言成功!\");</script>";}
这里你加个回到留言板页面就可以了
$comment_set=mysql_query($sql_1);
if($comment_set){echo "<script>alert(\"留言成功!\");window.location.href='index.php';</script>";}
index.php是你显示留言信息的页面
if($comment_set){echo "<script>alert(\"留言成功!\");</script>";}
这里你加个回到留言板页面就可以了
$comment_set=mysql_query($sql_1);
if($comment_set){echo "<script>alert(\"留言成功!\");window.location.href='index.php';</script>";}
index.php是你显示留言信息的页面
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询