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

How to create registration form

20th Feb 2017, 6:51 AM
Nikhil Pande
Nikhil Pande - avatar
4 Respuestas
+ 2
<form action="" method="post"> <label for="email">Enter your e-mail</label> <input type="email" name="email" id="email"> <label for="password">Enter your password</label> <input type="password" name="password" id="password"> </form> <?php $email = $_POST['email']; $password = $_POST['password']; ?> Something like that.
20th Feb 2017, 1:32 PM
Silver Mikki
Silver Mikki - avatar
+ 1
For God's sake, go to YT and research it!! Here people can help you with some lines of the code, and not to write the whole reg system for you -_-
20th Feb 2017, 12:39 PM
Dev
Dev - avatar
0
Instead of asking for someone to spoon feed, we must learn and apply what we learn so that we will never have to wait for someone to spoon feed us. I'd suggest try learning html,css (optional), php and SQL to be able to make a functional registration form. ☺
20th Feb 2017, 10:42 AM
RylN
RylN - avatar
0
👍👍
20th Feb 2017, 10:43 AM
Nikhil Pande
Nikhil Pande - avatar