0
How to add a email on HTML form submission
Help please I need it please https://sololearn.com/compiler-playground/W0alPi024I6q/?ref=app
5 Réponses
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
+ 1
<label for="email">Enter your example.com email:</label>
<input type="email" id="email" pattern=".+@example\.com" size="30" required />
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.