I have a form already formatted in CSS and HTML. How do I receive the data entered on the form after filling in?
I do not understand much about PHP.
<form class="w3-container" id="contato">
<p>
<label><b>Nome</b></label>
<input class="w3-input w3-animate-input" type="text" id="nome"></p>
<p>
<label><b>Sobrenome</b></label>
<input class="w3-input w3-animate-input" type="text" id="empresa"></p>
<p>
<label><b>E-mail</b></label>
<input class="w3-input w3-animate-input" type="text" id="email"></p>
<p>
<label><b>Telefone</b></label>
<input class="w3-input w3-animate-input" type="text" id="telefone"</p>
<p>
<input type="submit" class="w3-btn w3-center w3-gray" style="margin-left:270px">
</form>
I use the method
attribute in form
? How to send the data to a specific address?