php 多个submit提交表单 处理方法

高洛峰
发布: 2023-03-04 18:28:02
原创
2657 人浏览过

test.php 

<?php 
$test = $_POST[ &#39;test &#39;]; 
echo &#39;12 &#39;; 
echo $test; 
echo $_POST[ &#39;submit1 &#39;]; 
echo $_POST[ &#39;submit2 &#39;]; 
if (isset($_POST[ &#39;submit1 &#39;]) && $_POST[ &#39;submit1 &#39;] == &#39;submit1 &#39;) 
{ 
echo &#39;ok1 &#39;; 

} 
if (isset($_POST[ &#39;submit2 &#39;]) && $_POST[ &#39;submit2 &#39;] == &#39;submit2 &#39;) 
{ 
// echo " <meta http-equiv=refresh content= &#39;0; url=http://localhost:8000/php/index.php &#39;> "; 
// header( "Location:index.php "); 
// break; 
echo &#39;ok2 &#39;; 
} 
?>
登录后复制
<html> 
<head> </head> 
<body> 
<form action= &#39;xajaxtest.php &#39; method= &#39;POST &#39;> 
<input type= &#39;hidden &#39; name= &#39;test &#39; value= &#39;test1 &#39;> 
<input name= &#39;submit1 &#39; type= &#39;submit &#39; value= &#39;submit1 &#39; title= &#39;submit1 &#39;> 
<input name= &#39;submit2 &#39; type= &#39;submit &#39; value= &#39;submit2 &#39; title= &#39;submit2 &#39;> 
</form> 
</body> 
</html> 
为什么 这个测试页面 载入后第一次不传数据? 
echo $_POST[ &#39;submit1 &#39;];echo $_POST[ &#39;submit2 &#39;];都打印空 
之后就好了。这个是什么原因 有没有办法解决? 
方法二: 
<script language= "JavaScript "><!-- 

function check(){ 
frm.action = "checkname.php " 
} 
function mysubmit() { 
frm.action = "zhuce.php " 
} 
// --></script> 
<form method=post action= " " name= "frm "> 
<input type= "submit " onclick= "check() "> 
<input type= "submit " onclick= "mysubmit() "> 
</form>
登录后复制

更多php 多个submit提交表单 处理方法相关文章请关注PHP中文网!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!