Posted by Jerry Stuckle on 09/21/06 13:19
lorento wrote:
> 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:
>
>
> 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
>
(Top posting fixed)
Exactly which version doesn't support it? Every version of PHP I know
of supports
$c = new classA();
P.S. Please don't top post.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|