Posts Tagged ‘functions’

PHP Classes

This item was filled under [ PHP & MySql, References ]

Object Oriented Programming ( OOP ) is programming with use of classes and objects. A class consists of constants, variables and methods ( functions to alter the class’s properties ). An object can be created from a class and can be altered by calling the class’s functions. Why would I use classes & objects? You [...]

Continue reading...

PHP Functions

This item was filled under [ PHP & MySql, References ]

Functions are used for processes that need to be executed various times. They make it easier, faster and more efficient to get a certain process done. To create your own function, the following structure is used: function funcName ( … arguments … ) { … function process code … } You can give the function [...]

Continue reading...

Tagged with: [ , , ]