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.
在我的页面中,我想使用表单键提交表单。但我不知道如何在 php 中使用 formkeys。当我搜索时,无法清楚地了解表单键的用途。如何实现这一点。我在哪里可以看到这个表单键在 php.ini 中的演示。提前致谢
<input type="text" name="text"/>
$name = $_POST['text'];
$_POST是一个包含表单值的数组。使用输入名称(本例中为文本)
$_POST