I have created some and I need them to perform the same functions (with database) as register, change, etc. Can someone help me or explain to me how I do this?
Thank you!
I have created some and I need them to perform the same functions (with database) as register, change, etc. Can someone help me or explain to me how I do this?
Thank you!
With javascript you can click the button to invoke the submit event of form:
HTML:
<form id="meu_form">
<button id="enviar" type="button"> Enviar </button>
</form>
Javascript
document.getElementById('enviar').addEventListener('click', function() {
document.getElementById('meu_form').submit();
});