このまったく同じ方法を使用して作成した複数のページがありますが、何らかの理由で、何を試しても、特定のフィールドを電子メール フィールドに転送できません。まったくデータが得られません。ここにフォームHTMLがあります
<form action="interest.php" method="post" > <!-- BEGIN cardetail Form -->
<table>
<tr>
<td width="50" class="alignRight" style="font-weight:bold;" >Year:</td>
<td width="10px"></td>
<td width="112"><p name="carYear">2011</p></td>
<td class="alignRight" style="font-weight:bold;" >Color:</td>
<td width="10px"></td>
<td><p name="carColor">Red</p></td>
</tr>
<tr>
<td class="alignRight" style="font-weight:bold;" >Make:</td>
<td width="10px"></td>
<td ><p name="carMake">Honda</p></td>
<td width="50" class="alignRight" style="font-weight:bold;">Trim:</td>
<td width="10px"></td>
<td>Car has some sort of trim on it.</td>
</tr>
<tr>
<td class="alignRight" style="font-weight:bold;" >Model:</td>
<td width="10px"></td>
<td><p name="carModel">Accord</p></td>
<td class="alignRight" style="font-weight:bold;">Miles:</td>
<td width="10px"></td>
<td><p>180,000</p></td>
</tr>
<tr>
</tr>
<tr>
<td class="alignRight" style="font-weight:bold;">Options:</td>
<td width="10px"></td>
<td colspan="4">
<p>
Power Windows,
Power Locks,
Keyless Entry,
Cruise Control,
Climate Control,
2.6L V-Tech
</p>
</td>
</tr>
<tr>
<td style="font-weight:bold;">Repairs/Maintenance:</td>
<td width="10px"></td>
<td colspan="4">Fuel line flush, Transmission flush, Coolant flush, Oil Change, New Oil Filter, New Fuel Filter, New Air Filter, New Radiator, Painted Driverside Door, New Tires, Brand New Wax Job, and Fully Detailed.</td>
</tr>
<tr>
<td class="alignRight"></td>
<td></td>
<td><a href="#top">Back to Top</a></td>
<td class="alignRight" style="font-weight:bold;">Price:</td>
<td></td>
<td class="price"><p><span class="price"><?php echo $carPrice; ?>$6,000</span><input class="showInterest" type="submit" name="showInterest" id="showInterest" value="Show Interest" /></td>
</tr>
</table>
</form> <!-- END cardetail Form -->
これは、情報を転送しようとしているphpコードです。
<?php echo $_POST['carYear'] . " / " . $_POST['carMake'] . " / " . $_POST['carModel'] . " / " . $_POST['carColor']; ?>
サーバーからコードを実行すると、取得できるのは 3 つの "/" だけです。何らかの理由で $_POST がデータを取得していません。私はそれを変数に渡そうとしましたが、例のようにデータを挿入するだけです。私は何を間違っていますか?私が見逃している小さなタイプミスはありますか?