同じことを行うための2つの送信ボタンがあるphpページがありますが、どちらかを押すと「searchLN.php」に移動します。ボタンを取り除き、テキストで Enter キーを押すと、正しいページに移動します。何が間違っていますか??
<?php
echo '<h1>Search Patients</h1>';
echo '<td><form method="post" action="searchLN.php">';
echo 'Search By Patient Last Name :<input type="Text" name="searchPersonLN" class="button">';
echo '<input type="Submit" name="searchPersonLN" class="button" value="Search" ';
echo '</form></td>';
echo '<br>';
echo '<td><form method="post" action="searchID.php">';
echo 'Search By Patient Number :<input type="Text" name="searchPersonID" class="button">';
echo '<input type="Submit" name="searchPersonID" class="button" value="Search" ';
echo '</form></td>';
echo '<br>';
echo '<a href="index.php">Return To Main Menu</a>';
?>