If you want to be a good programmer, and not a hack, learn a little bit about programming first, before digging into web stuff. The web is great resource for figuring out how to do all sorts of things, but it's not the best resource for building a good, general, foundation. Building such a foundation before getting too web-specific will save you time and headaches in the long run.
Get an introductory text or two on Algorithms and Data Structures. Try to burn through them pretty quickly. It might seem irrelevant to your interests, but you'll save yourself a lot of pain if you have an understanding of fundamental things like linked lists, priority queues, various tree structures and algorithms to traverse them in various ways, etc.
Most introductory computer science textbooks will cover this stuff.
I've never seen this book in person, but it has good reviews, and Python is a handy language for all sorts of areas (both web and lots else).
After a few weeks of intense study (or longer if you go slower), you can start looking at various web-related things. Once you work your way through your introductory text, come back and take advice from other answers to your question.