+ 4
How to create a webpage with user registration system?
6 odpowiedzi
+ 8
Do you have hosting?
If yes, then you can see phpmyadmin on cpanel,
if no, then buy and follow 1st point
+ 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.
+ 5
Besides, Html, Css and Javascript, you need Php and Mysql also. Or any other server scripting language eg. NodeJs with MongoDb
+ 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
+ 3
Yes. I too know about the client side but I'm a bit confused about the server side .
+ 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.