我命名了一个提交和一个 href,当我测试条件提交工作但 href 没有并且没有显示错误时。请任何帮助将不胜感激波纹管是代码
<form action="test.php" method="post"/>
<a href="#" name="amhref" >Href</a>
<input type ="submit" name="button" value="button">
</form>
<?php
if(isset($_POST['amhref'])){
echo ("<h1>I am href </h1>");
}else if(isset($_POST['button'])){
echo ("<h1>I am the button</h1>");
}
?>