当我单击“提交”时,代码应显示函数中的值。下面是代码:
<form method="post">
<input type="hidden" name="HDN_FormClicked" value= <?php echo $clicked ?> />
<?php
if($_POST){
$clicked= "You have clicked the button";}
?>
<input class="button" type="submit"/>
</form>
我需要使用 $_get 来使代码工作吗?