我使用这样的 post 方法创建了一个表单:
<form name="indexFormn" id="indexForm" method="POST" action="page.php">
<div class="AdminformDiv">
<div class="errorbox">
<?php
if (!is_array($this->actionErrors)) {
echo $this->actionErrors;
}
?>
</div>
<div>
<table border="0" cellpadding="0" cellspacing="0" style="width:700px">
<tbody>
<tr>
<td style="width:128px">Amount</td>
<td colspan="2">$ <?php echo $this->price;?> USD<td style="width:270px"> </td>
</tr>
<tr>
.....
但问题是当我执行“var_dump($_SERVER['REQUEST_METHOD']);” 在我的 php 代码中,我总是得到“GET”而不是“POST”,我真的不知道为什么?