0

同じことを行うための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>';
?>
4

1 に答える 1

2
echo '<input type="Submit" name="searchPersonLN" class="button" value="Search" ';

>またはで入力を閉じない/>ので、次の行</form>はフォームを閉じません。

于 2012-10-29T22:04:37.257 に答える