嘿,我正在创建我的第一个php表单,并且真正在努力解决我在这里做错的事情;
这是表格:
<form method="post" action="includes/contact-process.php">
<table>
<tr>
<th>
<label for="name">Name</label>
</th>
<td>
<input type="text" name="name" id="name">
</td>
</tr>
<tr>
<th>
<label for="email">Email</label>
</th>
<td>
<input type="text" name="email" id="email">
</td>
</tr>
<tr>
<th>
<label for="message">Message</label>
</th>
<td>
<textarea name="message" id="message"></textarea>
</td>
</tr>
</table>
<input type="submit" value="Send">
</form>
这是contact-process.php
<?php
var_dump($_Post);
?>
这就是它一直回归的原因:
注意:未定义的变量:第3行的\ includes \ contact-process.php中的_Post
NULL
答案 0 :(得分:3)
应该是$_POST,而不是$_Post
:
<?php
var_dump($_POST);
?>
答案 1 :(得分:0)
$ _ POST区分大小写,$ _POST与$ _Post不同,请尝试
var_dump($_POST);