I have two forms on the same page (well separated by html tags) and I need to get the data of the two for my PHP script. As I'm brand new to PHP and I have no idea, I kicked an attempt by triggering PHP in both forms and putting the input = submit only on 1 of them, type:
<form action="meu.php" metod="POST">
conteudo do form1
</form>
<-tags HTML, como div,a,center etc->
<form action="meu.php" metod="POST">
conteúdo do form2
<input type="submit">
</form>
That's right, it did not make much sense and I saw that it does not roll. I gave one searched but also found nothing useful. Can I do something to make it possible? (this example serves to show how the structure of my code is)