PHP Back to Basics #9: Working with Objects
In this tutorial, we look at what classes and objects are, and how they can be used to make your code more organized, with the benefit that they can easily be shared between people and projects. We then see how a class is defined, and how to add properties and methods to the class, as well as how to use a constructor function which is run automatically when a new object is created from the class.
Finally, we create an example class that can be used to easily generate HTML tables, so you only have to setup the appearance of the table such as its width, border etc, and the class does the hard work of actually generating the HTML code to create the table.
Read More