本文目录一览:
PHP内容提交后怎么跳转到当前页面显示提交的内容呢?
php表单提交成功后,最好有个判断是否成功,成功才跳转
可以设置一个变量$result 来判断是否成功,
成功的话跳转
假设$result0是成功,则
?php
if($result 0){
echo 'scriptalert("提交成功!");location.href="'.$url.'"/script'; //$url就是你的跳转路径
}
?
或者
?php
if($result 0){
echo '提交成功,即将跳转.....';
header("refresh:1;url=$url");//$url就是你的跳转路径
}
?
PHP表单提交无法显示提交信息
楼上的误人啊。index.html不需要改成index.php的。
get方式提交后,提交的信息会保存在网址中,你看看你提交后的网址中有没有参数就知道了。
如何用PHP实现表单提交
创建go.php,代码如下
?php
@$username = $_POST['name'];
@$usermessage = $_POST['message'];
if(!empty($username) || !empty($usermessage)){
echo "您的姓名:".$username.",您的留言内容:".$usermessage;
}else{
echo 'form action="go.php" method="post"
您的姓名:input type="text" name="name"brbr
留言内容:input type="text" name="message"
button提交/button
/form';
案例截图:
请教php提交表单后无法正常显示
要么是A提交到B的环节有问题,要么是B的代码有问题。最好把代码发上来看下!