下面的php,我点“提交”之后,文本框里的内容会消失,要怎样才能让它不消失?
<html><formname="form"method="post"action=""><tr><td><inputtype="text"name="user"id="...
<html>
<form name="form" method="post" action="">
<tr>
<td><input type="text" name="user" id="user" /></td>
<td><input type="submit" name="tijiao" value="提交"></td>
</tr>
<?php
if($_POST["tijiao"]=="提交")
echo $_POST["user"];
?> 展开
<form name="form" method="post" action="">
<tr>
<td><input type="text" name="user" id="user" /></td>
<td><input type="submit" name="tijiao" value="提交"></td>
</tr>
<?php
if($_POST["tijiao"]=="提交")
echo $_POST["user"];
?> 展开
2个回答
2016-07-22
展开全部
<html>
<form name="form" method="post" action="">
<tr>
<td><input type="text" name="user" id="user" value="<?php if(isset($_POST['user'])){echo $_POST['user']; }else{echo "";}?>" /></td>
<td><input type="submit" name="tijiao" value="提交"></td>
</tr>
<?php
if(isset($_POST["tijiao"])){
echo $_POST["user"];
}
?>
更多追问追答
追问
如果我想做到
点“提交”之后,页面自动跳转到www.baidu.com的界面,该怎么办?加悬赏。
追答
重定向就可以了!!
if(isset($_POST["tijiao"])){
echo $_POST["user"];
header("location:http://www.baidu.com");
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询