Can someone shed some light on the '->' syntax seen below.  Is this like
similar to Perl '=>' syntax to access hash key value pairs?

Thank you one and all.

[snip]
// print mailing list
while($data = mysql_fetch_object($result)){
   print($data->name . ", " . $data->address . ", " . $data->city . ", " .
$data->state . ", " . $data->zip . "\n");
}
[/snip]





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to