1
I created a form in html where the user type the name, email, phone, but I need to redeem these "entries" in csv for future firing email.
Can someone give me a hand on 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, they taught how to forward to a php file. My question is, form input can only go to php? If yes, you would have to create a function within php to feed the csv file?
I just graduated in html/css and Pyton, I don’t have much knowledge in php or other languages.
Thank you very much!!
What is the need to load all the contents of the file in memory just to add a line to the end?
– Woss