How to create a webpage with user registration system? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 4

How to create a webpage with user registration system?

6th May 2017, 2:52 AM
Shreyak Timsina
Shreyak Timsina - avatar
6 Réponses
+ 8
Do you have hosting? If yes, then you can see phpmyadmin on cpanel, if no, then buy and follow 1st point
6th May 2017, 3:08 AM
Sachin Artani
Sachin Artani - avatar
+ 6
For front end, Use HTML, CSS and a little bit JavaScript, Create HTML form for registration (refer w3schools.com) Then in back end, create database, connect the page with mysql database and done.
6th May 2017, 3:03 AM
Sachin Artani
Sachin Artani - avatar
+ 5
Besides, Html, Css and Javascript, you need Php and Mysql also. Or any other server scripting language eg. NodeJs with MongoDb
6th May 2017, 2:58 AM
Calviղ
Calviղ - avatar
+ 4
phpmyadmin is used to handle databases, you have to create the database first by going to "MYSQL database", Create a user to handle that particular database, Give all priviledges to user to handle that db, Now you have to do coding. Wait let me give you a specific link to know how to create one registration form
6th May 2017, 3:10 AM
Sachin Artani
Sachin Artani - avatar
+ 3
Yes. I too know about the client side but I'm a bit confused about the server side .
6th May 2017, 3:05 AM
Shreyak Timsina
Shreyak Timsina - avatar
+ 2
For front-end, you must build signup and login forms using form, input and submit Css tags, you probably need Ajax(Javascript) for seamless data interaction. For server side, you need to learn php $_POST arrays to get the received data from front-end. Also learn how to setup Mysql database, table as well as dataset. Study the commands of get and store data to Mysql using Php.
6th May 2017, 3:26 AM
Calviղ
Calviղ - avatar