I am trying to create a login page. I would like to store the information from the form page using SQL and use it to contact the users. How can I create login page and link SQL data.
I am not computer tech and don’t know to ask more in technical terms.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
SQL is a specialty language for talking to databases (in the same way that HTML is used to communicate with web browsers.)
You can use SQL to communicate with a database, but normally you use a programming language like ASP.NET or PHP to manage the communication.
Use SQL to create a database, and HTML to create your login form. The form contacts a program on the server, which reads the users input and constructs a query, which is passed to the database. The database responds with a result set, which the program then translates to HTML and displays on the page.
The actual languages you use aren’t really that important, but I prefer solid free languages when I can find them. PHP and MySQL are frequently used for this purpose because they do a great job and are entirely free to install and use. It’s not too hard to find a free web server that supports both of these tools.
Check one of my books for more details.
Good Luck!
you can use sql to store your user’s information, username password email etc. and your website will need to be in PHP maybe theres another language. maybe you can google around for “PHP login script” should be easy to find
regrads
edison lau