Refactoring by fowler.
Design Patterns.
those are the two critical ones.
Start with the refactoring book and learn the bad code smells, start to apply it throughout your source code.
Honestly there are a million books out there, but I think the most important concept is DRY (Don't repeat yourself). EVER.
This applies to your interfaces (don't pass redundant variables) and your code (Never have any piece of business logic in two different places).
As you ruthlessly refactor your code and remove redundancies, you will learn to program it better in the first place--then you can start trying to detect more subtle redundancies, things you might not have thought to factor in the first place, etc.
