一个页面上的两个提交按钮总是转到第一个操作页面

时间:2012-10-29 21:46:03

标签: php forms button submit

我有一个php页面,它有两个提交按钮,用于执行相同的操作,但是当按下任一个时,它们只会转到'searchLN.php'。当我拿走按钮而你只需按下文本上的输入就会转到正确的页面,我做错了什么?

<?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>';
?>

1 个答案:

答案 0 :(得分:2)

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

您不会使用>/>关闭您的输入,因此,下一行的</form>不会关闭您的表单。