我有一个 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>';
?>