本文目录一览:
php表单提交POST提交不上
您好
我刚才测试了一下,代码是正确的。
另外,建议对POST进行isset($_post['']),empty($_post['']) if --else 判断,不然有些地方可能会出现错误提示。
php中的表单提交方式get和post有什么区别?
1 get明文传输,信息附加在url上面,get明文传输,post更加安全
2 get传输有大小限制,应该是3k,post需要制定传输类型
3 get多用于获取数据,根据get变量的不同调用不同的数据,post多用于提交数据,提交用户输入的数据
怎么在php 使用post表单提交
form action="url.php" method="post"
pinput type="text" name="username" value=""/p
pinput type="submit" name="submit" value="提交"/p
/form
求助PHP如何POST提交数据
用PHP向服务器发送HTTP的POST请求,代码如下:
?php
/**
* 发送post请求
* @param string $url 请求地址
* @param array $post_data post键值对数据
* @return string
*/
function send_post($url, $post_data) {
$postdata = http_build_query($post_data);
$options = array(
'http' = array(
'method' = 'POST',
'header' = 'Content-type:application/x-www-form-urlencoded',
'content' = $postdata,
'timeout' = 15 * 60 // 超时时间(单位:s)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
return $result;
}
使用的时候直接调用上面定义的send_post方法:
$post_data = array(
'username' = 'username',
'password' = 'password'
);
send_post('网址', $post_data);