Posted by lorento on 09/21/06 11:04
What version of PHP do you use?
Old version of PHP doesn't support instantiate like this:
$c=new classA();
try to use below instantiate instead of above:
$c = & new classA();
--
http://www.groupvita.com
http://www.deshot.com
Jag wrote:
> Hello there!
> At the beginning, I'm apologize
> for my weak english skills.
> I got a problem with the class
> which I include from the other
> file. It's hard to me to explain
> it clearly, so I just give you
> files:
[Back to original message]
|