could you give me some advance programming concept in php forimproving my coding standard?
becoz i have done program in simple php code so i would like to improve my knowlege in php.
thanks in advance
How are your PHP object-oriented programming skills? If your answer is anything less than "good", I would recommend working on improving them.
thanks for your idea.
How about design patterns? are you familiar with them? Not directly related to PHP but rather all programming. I'd check them out, but i'd do object-oriented first.
dougal85 wrote:...but i'd do object-oriented first.
...but i'd do object-oriented first.
Especially since, generally speaking, most design patterns are built around OO concepts. 🙂
Learn the MVC design pattern. It is absolutely crucial to creating maintainable code in large scale applications. It not only makes your code simpler, but makes it unit-testable and easy to refactor.