表单提交后 $_POST 为空

$_POST is empty after form submission(表单提交后 $_POST 为空)
本文介绍了表单提交后 $_POST 为空的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在我的服务器上设置了这个测试页面.请告诉我为什么即使我提交表单,$_POST 数组也不包含任何内容.我已经在三种不同的浏览器中尝试过这个,但没有任何反应.

I set up this test page up on my server. Please tell me why the $_POST array does not contain anything even when I submit the form. I have tried this in three different browsers and nothing happens.

<?php print_r($_POST);?>

<form method="post">

<p><label>Email: </label>
<input type="text" id="login_email" />
</p>

<p><label>Password: </label>
<input type="password" id="login_password" />
</p>

<p><label>Remember Me?: </label>
<input type="checkbox" id="login_remember" />
</p>

<p>
<input type="submit" value="Login" />
</p>

</form>

我已经写 PHP 多年了,以前从未发生过这种情况.这段代码有什么问题?

I have been writing PHP for years and this has never happened before. What is wrong with this code?

推荐答案

您的输入元素没有名称属性.应该是:

Your input elements do not have name attributes. Should be:

<input type="text" id="login_email" name="login_email" />

如果一个 input 元素没有 name 属性,它不会作为 POST 数据的一部分发送.

If an input element does not have a name attribute, it is not sent as part of the POST data.

这篇关于表单提交后 $_POST 为空的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)