Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在表单提交主题后读到$_POST 为空,我想知道如何从没有属性名称的输入中获取数据?
<input type="text" > var_dump($_REQUEST)//empty var_dump(file_get_contents('php://input')) //empty
基本上,表格应该指定它的名字。如果没有,您将无法从服务器端获取它。
但是,没有名称的形式在HTML5. 原因是您有时可能想使用 for form submission via AJAX or Javascript app。在很多情况下
HTML5
form submission via AJAX or Javascript app