PHP内容提交后怎么跳转到当前页面显示提交的内容呢?
这个是提交页面<!DOCTYPEhtml><html><head><styletype="text/css"></style></head><body><formacti...
这个是提交页面
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<form action="tiebacharu.php" method="post">
标题:<input type="text" name="title">
内容:<input type="text" name="content">
<input type="submit" >
</form>
</body>
</html>
这个PHP处理提交的页面
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("t1", $con);
$sql="INSERT INTO tieba(title,content)
VALUES('$_POST[title]','$_POST[content]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
else{
echo "<script>alert('发布成功');location.href='xianshi.php'</script>";
}
mysql_close($con)
?>
但是显示的页面该怎么写呢 比如这个href跳转的页面 显示当前页面时怎么样传参数呢 写到这不会写了 谁能教教我
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
echo "连接数据库失败";
exit;
}
$sql='use t1';
mysql_query($sql,$con);
$sql='select*from tieba';
$rs=mysql_query($sql,$con);
$row=mysql_fetch_assoc($rs)
?>
<html>
<body>
</body>
</html> 展开
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<form action="tiebacharu.php" method="post">
标题:<input type="text" name="title">
内容:<input type="text" name="content">
<input type="submit" >
</form>
</body>
</html>
这个PHP处理提交的页面
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("t1", $con);
$sql="INSERT INTO tieba(title,content)
VALUES('$_POST[title]','$_POST[content]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
else{
echo "<script>alert('发布成功');location.href='xianshi.php'</script>";
}
mysql_close($con)
?>
但是显示的页面该怎么写呢 比如这个href跳转的页面 显示当前页面时怎么样传参数呢 写到这不会写了 谁能教教我
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
echo "连接数据库失败";
exit;
}
$sql='use t1';
mysql_query($sql,$con);
$sql='select*from tieba';
$rs=mysql_query($sql,$con);
$row=mysql_fetch_assoc($rs)
?>
<html>
<body>
</body>
</html> 展开
2个回答
2015-12-02
展开全部
php表单提交成功后,最好有个判断是否成功,成功才跳转
可以设置一个变量$result 来判断是否成功,
成功的话跳转
假设$result>0是成功,则
<?php
if($result > 0){
echo '<script>alert("提交成功!");location.href="'.$url.'"</script>'; //$url就是你的跳转路径
}
?>
或者
<?php
if($result > 0){
echo '提交成功,即将跳转.....';
header("refresh:1;url=$url");//$url就是你的跳转路径
}
?>
可以设置一个变量$result 来判断是否成功,
成功的话跳转
假设$result>0是成功,则
<?php
if($result > 0){
echo '<script>alert("提交成功!");location.href="'.$url.'"</script>'; //$url就是你的跳转路径
}
?>
或者
<?php
if($result > 0){
echo '提交成功,即将跳转.....';
header("refresh:1;url=$url");//$url就是你的跳转路径
}
?>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询