Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Twitter Bootstrap for my new site. I have read tutorials on how to get a working login box that is correctly styled.

Which login script should I use, or should I code one myself? I know some PHP, but am unsure which login script with at least some basic user management is the best?

Thanks.

share|improve this question

1 Answer

UPDATED 19/3/13:

  • Fixed broken links, added new example page.
  • Added mention about SQL vulerabilities / PDO.

Bootstrap offers a CSS framework with associated JavaScript. It doesn't deal with server side code, and you need to do this yourself.

I recently did the same as you, in PHP, and I found the following two links useful, well explained, simple to follow and excellent for beginners. Combine the two and you'll have what you need.

BuildInternet.com's basic PHP backend setup, with login, session management etc covers:

  1. Setting up the project, creating OO database class.
  2. Building backend, user class, user tools, login/logout, registration.
  3. Building frontend, forms, form handling, displaying session data.

Simple registration page using Twitter Bootstrap contains:

  1. A demo page.
  2. Basic markup for registration page.
  3. A little custom CSS.

A Note on database security

BuildInternet.com's tutorial above uses standard mysql_* functions. These are vulnerable to attack and are deprecated. Once you understand your login page, you should secure your database functionality using PDO.

Enjoy!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.