> Hi! > > Bing Du wrote: >> Excellent! Yes, it now does give me a clue to see what's actually in >> the >> object. print_r($rec[0]) shows: >> >> stdClass Object ( [year] => 2005 [month] => 8 [day] => 31 [hour] => 0 >> [minute] => 0 [second] => 0 [fraction] => 0 ) >> >> I've never dealt with object in PHP. Something new learnt today. I'm >> now >> able to use get_object_vars($rec[0]) to extract the info from the >> object. > > You don't need get_object_vars(), you can simply use > > $rec[0]->year; > Ah, great. Thanks much for the tip and the pointers. That's even better. Another question. It's not hard to do this mapping. But if given a month like '9', is there any PHP function that can convert it to a full text month name 'September'? Bing -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php