How to add a registration and login form to my html website? Do I need to create MySQL table for it?
-
how to add a registration and login form to my html website? Do I need to create MySQL table for it? plz tell me the process step by step
-
Answer:
<form method="POST" action="other html file here"> Username: <input type="text" name="username" size="15" /> Password: <input type="password" name="passwort" size="15" /> <div align="center"> <p><input type="submit" value="Login" /></p> </div> </form> This is the html code to create a login page.In the action = code in the first line add other html page to which you want to navigate after clicking on the button. You can create a registration page similarly. Now comes the interesting part.HTML is used to create static pages which includes creating textbox,buttons,checkbox etc mySQL is used for storing data.So html is the frontend and Mysql is the backend.Here if you only want to display the login page then only html is needed but if you want to check if the user has registered in your website previously, then you need to check the entered username and password with the values of the username and password stored in your mysql table.Here you would need both mysql and html Remember the username and password values would be entered to the table when the user does the registration.
Trideep at Yahoo! Answers Visit the source
Related Q & A:
- How to add a column header to the dynamic table?Best solution by stackoverflow.com
- How to add a contact to a specific list?Best solution by Stack Overflow
- How to add a new table to a data source?Best solution by technet.microsoft.com
- how to add a form with a unique id on jquery?Best solution by Stack Overflow
- How to add a website to a search engine?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.