test1php
<form action="test2php" method="post">
<input type="text" name="username" /><br/>
<input type="password" name="pw" /><br/>
<input type="submit" name="sbmit" value="提交" />
</form>
test2php
<php
$username = $_POST['username'];
$pw = $_POST['pw'];
echo "用户名:"$username;
echo "<br/>";
echo "密码:"$pw;
>
test2php 这里也可以这样写。
<php
extract($_POST);
echo "用户名:"$username;
echo "<br/>";
echo "密码:"$pw;
>
jQuerypost( url, [data], [callback], [type] ) :
相当于无刷新
$post('selectleixingphp',{getleimu:getleimu}); //提交数据到页面
locationhref="selectleixingphp"; //跳转到页面
上述两部完全是分开的,没有任何关系,你先提交数据到那个页面了,然后你再打开这页面(重新打开),肯定是获取不到值得。
getleimu=$("#selectleimu option:selected")text();
windowlocationhref="selectleixingphp?getleimu="+getleimu;
selectleixingphp页面用$_GET获取参数
<php
$username=$_POST['username'];
>
<form action="" ><input type="text" name="username"><input type="submit" name="submit" value="提交"></form>
form的action属性留空的话就直接提交到当前页面了 后台直接$_POST获取前台传过来的表单域啊
以上就是关于.在PHP中,如何获取表单FORM通过GET或POST方法提交的参数值全部的内容,包括:.在PHP中,如何获取表单FORM通过GET或POST方法提交的参数值、php 页面 获取不到$.post传过来的值、php表单怎样提交到当前页面,并用$_POST获取其值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)