Posted by Mike Willbanks on 10/21/05 04:03
Gerard wrote:
> I have the database model....what i need is a class hierarchy
>
> Rgds,
> Gerard.
>
Basically with php4 you could use a bunch of extending classes...
Class Group {
....
}
Class User extends Group {
....
}
Class Person extends User {
....
}
Also there are interfaces, abstracts etc... It is hard to know what you
are completely looking for without explaining it in more detail. Not
really what you are trying to accomplish with the application itself but
more so what you are trying to accomplish with a hierachy of objects.
--
Mike Willbanks
Zend Certified Engineer
http://www.digitalstruct.com
Navigation:
[Reply to this message]
|