How do you create temporary MySQL table in SQLAlchemy?

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

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

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.