您的位置:

phppost函数,php发送post请求

本文目录一览:

PHP的POST怎么用?

表单提交一般有两种方式GET、POST。

POST方式的用法如下

代码例如:文件为index.php

html代码

form name="biaodan" method="post" action="index.php?action=ok"

姓名:input type="text" name="name" value=""

br

性别:input type="text" name="sex" value=""

br

input type="submit" value="提交"

/form

php代码

?php

if(isset($_GET['action']) $_GET['action'] == 'ok'){

$name = $_POST['name'];

$sex = $_POST['sex'];

echo '姓名为:'.$name;

echo 'br';

echo '性别为:'.$sex;

}

?

php函数里面怎么获取post过来的值

php直接用全局变量$_POST来接收post参数

比如:前端input name ="username" value="123" type="text"/

参数username通过post传参数到服务器,php以$_POST['username']来接收

php 怎样把变量post给自己的一个函数

1.你post 到自身 代码我就省写了自己添加完整

form

input type="hidden" name="mypost" value="?php echo $AA; //1 ?"

/form

2.自身获取post内容

if (issset($_POST['mypost'])){

echo MyProcedure($_POST['mypost']);//根据3函数 传递参数进去.

}

3.函数这么写

function MyProcedure ($myTest){

return $myTest;

}