I will describe in the following post a (very) simple MVC framework. You can download the source code from here or can make a copy from bitbucket repository. As you can see, we have the following folders: – web: here resides your public files (images, css, and index.php) – app: here you can find application… Continue reading A simple MVC framework
Tag: oop
Public, Private, and Protected in PHP
or how to manage access to your classes. In PHP there are three levels of access for properties and methods from within a class: public, private, and protected. Public access is the default setting for method and for properties. Public properties and methods can be accessed from any context. Private methods and properties can ONLY… Continue reading Public, Private, and Protected in PHP