for php + mysql it's really simple. Read chapter 7 of the MySQL manual 3 times
throroughly. Read the functions of php + comments on
www.php.net 5 times
very thoroughly......start programing, slowly get better.
Don't forget before you start to write/draw what you want to accomplish.
Start moving the elements around as long as it takes to get the simplest
most efficient design of the code.....a good program design is the most
important part of it all.
With bigger projects try to build a core part surrounded with modules. This way
you keep things simple and flexible. If you want to add functionality you just
can build a new module that interfaces with the core part of the code.
This way you don't have alter the whole software.
