I feel real stupid asking this, but can someone link some info on these two operators? I can't seem to include them in my google queries, even within forum searches. Must be the nature of the characters. I have looked for quite awhile in the manual. Anyway...
-> as in
echo $iterator->key() . ' => ' . $iterator->current() . '<br />';
=> as in
foreach($temp as $key => $value){
echo $key." - ".$value."<br />";
}
Thanks, Hop