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;

Perhaps have a look at the docs: http://de3.php.net/oop5

And perhaps the following example is useful for you: http://odbtp.sourceforge.net/timetable.html#list


regards
Andreas

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

Reply via email to