Re: [PHP] Dynamic/runtime object creation

2005-02-17 Thread kermodebear
Hello Joe, If you are careful, you can build a string of PHP and eval() it to create a new class definition. I've done this before, but it was for the novelty more than needed to actually use it. I know for a fact that I have seen several projects for this on the web; However, I tried doing a qui

[PHP] Dynamic/runtime object creation

2005-02-16 Thread joe Lovick
Hi, forgive me if this is a complete noob question What i want to do is create an object at runtime with members and methods based on the result of queries from my db back end. is this (a) possible? or (b) something i should get out of my head and go and find a better solution? basical