假设我有一个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.
为什么显示年龄而不显示姓名?我确定是方括号。我无法更改变量的名称submitted[name]
我试过推杆,\, "
但没有奏效。有什么诀窍?