How to add a email on HTML form submission | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

How to add a email on HTML form submission

Help please I need it please https://sololearn.com/compiler-playground/W0alPi024I6q/?ref=app

8th Feb 2024, 3:32 PM
Viraj Yadav
Viraj Yadav - avatar
5 Respuestas
0
Bro how to add a email to this code so the information which is submitted by submit button so the information came to me
11th Feb 2024, 1:33 PM
Viraj Yadav
Viraj Yadav - avatar
+ 1
<label for="email">Enter your example.com email:</label> <input type="email" id="email" pattern=".+@example\.com" size="30" required />
9th Feb 2024, 6:34 PM
Václav Dostál
Václav Dostál - avatar
0
Do not forget in opening form: <form action="yourpage.php" method="POST">, WHERE yourpage.php Is page where you will work with data from form - like insert into db.
9th Feb 2024, 6:39 PM
Václav Dostál
Václav Dostál - avatar