Hola,
No se si te he entendido muy bien. Si te refieres a poder determinar cuando el usuario ha hecho click en el buton submit, es muy facil!. Simplemente ponle un nombre y procesalo!.
Ejemplo
Saludos
No se si te he entendido muy bien. Si te refieres a poder determinar cuando el usuario ha hecho click en el buton submit, es muy facil!. Simplemente ponle un nombre y procesalo!.
Ejemplo
Código (php,7) [Seleccionar]
<html>
<head>
</head>
<body>
<form action="#" method="POST">
<input type="text" name="valor1" />
<input type="submit" name="botonenvio" value="Enviar" />
</form>
<?php
if(isset($_POST['botonenvio'])){
echo 'Has hecho click sobre el boton enviar!';
} else {
echo 'No has pulsado el boton enviar';
}
?>
</body>
</html>
Saludos