> My idea was to use references (&) so that $bb reflects back to $a->name 
> and when $a->name changes , so does $bb.
> 
> What is the goal of your setup. Maybe your better of saying:
> 
> class object {
> var $a
> var $bb
> etc
> 
> }

I am not sure if class would be good here 
cause I do not want to have objects.
I want simple &(aa); instaed of &(this.aa);
(as far as I understood php manual)

I tried with function
when I use reference
$aa = &$article->name;
global $aa;

It half works, does not change $aa value while fetch 


Piotras


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to