How do I identify with PHP if a submit button was clicked? and after the click I want to send a click confirmation message !. Detail everything in PHP. !!!
So it is not working not
<form method="POST">
<input type="text" name="salario"><br/><br/>
<input type="text" name="bonificacao"><br/><br/>
<input type="submit" name="btn">
</form>
<?php
$btn = $_POST['btn'];
if(!$btn){
echo " O botão foi clicado ";
}else{
}