I learned PHP OOP basics and to improve my knowledge of that, I am willing to create forum from scratch using OOP. So, can you give me a few tips you think I should know, what classes should I use and etc to improve my OOP knowledge as much as it possible. Thanks.
Share
Maybe you should consider using PHP framework, preferably some that uses MVC (some of them are listed on that page). You will have to write new classes and also you’ll see how the work is done in particular framework, which can certainly enhance your OOP knowledge.
As a bonus, many of these frameworks focuses on security issues so you will not have to worry about security of your web application. And after you learn how to use the framework, it should speed up your work.