I have another problem..I'm calling other functions within my constructor but PHP (I'm using PHP4) keeps saying they are undefined. This happens whether I put the functions above OR below the constructor. I don't know what to do..they're ALL defined and ALL spelled correctly. Any ideas?
-Sonny
Without seeing some code it is hard to tell what is happening. Are you calling native php funcs, Member funcs of the class, or external func's you've written. If you post the code I can probably tell you what is wrong.
Aaron
Are you using '$this'? e.g. $a = $this->class_func($b);
ahh yes, that was it. thanks!
-sonny