Guest Brian Posted March 14, 2010 Report Share Posted March 14, 2010 Now that I've got all my .NET Programming Language covered and Mastered, Im ready to start learning PHP. Tomorrow Im going to Microcenter and picking up some books. Which type of programming should I learn? OOP, Standard? Let me know. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted March 14, 2010 Administrators Report Share Posted March 14, 2010 Now that I've got all my .NET Programming Language covered and Mastered, Im ready to start learning PHP. Tomorrow Im going to Microcenter and picking up some books. Which type of programming should I learn? OOP, Standard? Let me know. Any OO stuff you learned in .NET should directly translate to PHP, in terms of static functions, public/private/protected classes. All those things. PHP books, I'm not sure. I always used the PHP manual. What I learned in C++ had pretty much directly translated to PHP. What would be more useful are learning design patterns and conceptual things. Syntax differs, but conceptually things remain the same. Important ones are factory, singleton, abstract. Some design methods like MVC and HMVC are also important concepts. Most frameworks are based on the front-controller MVC format, including Codon, which phpVMS is written on. It's MVC with a front-controller (MainController), which then routes to subcontrollers (modules). http://en.wikipedia....uter_science%29 Quote Link to comment Share on other sites More sharing options...
Guest Brian Posted March 14, 2010 Report Share Posted March 14, 2010 I see, I wont be at WSU For Computer Science, But for Computer/Software Engineering (CAsE). So for PHP, I should go directly to OOP Style? Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted March 14, 2010 Administrators Report Share Posted March 14, 2010 There's no one single OOP style. You have to learn the language and syntax. Most of OOP is part of design patterns. Those are included in any CS programs. Quote Link to comment Share on other sites More sharing options...
Guest N402KC Posted March 14, 2010 Report Share Posted March 14, 2010 Ok, So where do you recommend I start At. Quote Link to comment Share on other sites More sharing options...
Kieran Posted March 31, 2010 Report Share Posted March 31, 2010 You really have to know the php language before applying it to any sort of OOP. If you try to learn OOP as you go along, it can get confusing. Once you know the php syntax, you can then apply it to OOP. I recommend php/mysql for dummies by Janet Valade, that's where my journey started. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.