>Also, even though [0] and ['id'] initially contain the same value, they are
>not bound together in any way.  You may be able to accomplish what you
>desire by using references. (See the manual section on references for more
>information.

>ie.  $q->data[0]["id"] =& $q->data[0][0];

How can I create such a reference in code?
Now I'm using zend_hash_index_update and zend_hash_update for $q->data[0][0]
and $q->data[0]["id"], but that doesn't create a reference. So how should I
code this?

Cheerio, Marc.


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to