Posts by William • 3 points
3 posts
-
-1
votes1
answer72
viewsQ: Why isn’t my form accepting accents?
I created a form with php sending the data to my email, but the data that contains accents get distorted and bad to read. Example: "Frog test number 29" PHP code: $destinatario =…
-
0
votes4
answers542
viewsA: How to clear a form after submitting the data?
Thank you all! I was able to solve the problem through Francis' answer. I thank you above all for your cooperation.
-
-2
votes4
answers542
viewsQ: How to clear a form after submitting the data?
I created a javascript function to clean and called the button to send with onclick. was like this: function limpar(){ $("input").val(""); $("textarea").val(""); } <input type=text>…