I created a form in html where the user types the name, e-mail, phone, however I need to retrieve these "cadastral" records in csv for future e-mail firing.
Can anyone help me with how to feed this csv with inputs?
<form>
<input type="text" name="Nome" value="Nome"><br>
<br>
<input type="mail" name="mail" value="e-mail"><br>
<br>
Sexo<br>
Masculino
<input type="checkbox" name="homem" value="masculino"><br>
Feminino
<input type="checkbox" name="mulher" value="feminino"><br>
<input type="submit" value="Submit">
</form>
All the articles I found, taught to pass to a php file. My question is, can one-way input to php? If so, would you have to create a function inside php to feed the csv file?
I just graduated in html / css and pyton, I do not have much knowledge in php or other languages.
Thank you very much !!