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

I've been doing a lot of Javascript programming lately, creating a number of single-page web apps. There isn't much server-side code involved, but I'd like to flesh out one of my apps to include things such as user accounts. I don't have much meaningful experience coding server-side/databases, so I feel a little uncomfortable hacking a user account system together, mainly due security concerns. In other words, I just feel like this is one area where I'm going to create a real insecure POS.

I'm looking for some advice on which core topics I should try to tackle, or ideas on projects that will cover many of those issues.

share|improve this question
You might start by using a web framework that includes user account functionality. Django certainly does, and I’m sure Ruby on Rails and whatever the popular PHP frameworks are do as well. You could then have a look at the source code of their implementations to see what they do. – Paul D. Waite Oct 8 '11 at 22:37

closed as not constructive by rid, Wooble, svick, BalusC, d11wtq Oct 9 '11 at 2:31

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

Just get a good book. Read it. You should be up in no time. Since you already have experience in Javascript, learning a new language shouldn't be difficult especially if its PHP. Plus there are lots of frameworks that would help you avoid coding crap.

share|improve this answer

Since you already have experience with Javascript I suggest you learn node.js, it's the new kid on the block and bullies all the other server-side languages to the punch and you won't need a web server.

You also need to learn how to work with databases. Nowadays non-relational, schema-less databases (aka NoSQL data storages) are gaining quite some popularity (specially in the node.js community), however I would still advise you to learn the relational model, data normalization and everything else.

  • Good (and free) RDBMS include: SQLite, MySQL, PostgreSQL.
  • Good (and free) NoSQL DBs include: MongoDB / CouchDB, Redis, etc...

Besides the technologies you also need to master a whole bunch of techniques:

  • MVC Pattern
  • Singleton / Dependency Injection Pattern
  • (Securely) Hashing
  • Session Handling
  • many (many) more...

There are also frameworks for pretty much every server-side language that can help you solve/simplify many of these problems/best-practices, for that I suggest you Google "[language here] framework".

share|improve this answer

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