I my previous messages i asked about class methods and how i would go about creating them in PHP.
I found out that class methods are more commonly known as Static Methods.
ie. a function that is relevant to a class and does not need a specific object instance to work with.
for instance in class "Employees" an attribute would be $name. How do i go about creating a method
get_employee_names() that would get the $name attribute from all the instances of that class.
I hope that this not confusing and that someone out there can help me.
Thankyou
Shabbir