gpt4 book ai didi

php - POST 请求中的方括号

转载 作者:行者123 更新时间:2023-12-03 02:28:15 25 4
gpt4 key购买 nike

假设我有一个如下所示的 form.html:

<form action="welcome.php" method="post">
Name: <input type="text" name="submitted[name]">
Age: <input type="text" name="age">
<input type="submit">
</form>

还有一个 welcome.php ,如下所示:

Welcome <?php echo $_POST["submitted[name]"]; ?>!<br>
You are <?php echo $_POST["age"]; ?> years old.

为什么显示年龄而不显示姓名?我确定是方括号。我无法更改变量subscribed[name]

的名称

我尝试输入 \, " 但没有成功。有什么技巧吗?

最佳答案

name 属性上的方括号将向 PHP 发送一个数组,尝试使用 $_POST['submited']['name'] 访问它

关于php - POST 请求中的方括号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17812772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com