In my Interbase date, the Dec 2, 2004 read as "02/12/2004". But after I retrive it from the database and display it in php page, it becomes 12/02/2004.
How does that happen?
My guess is that my interbase default date format was set to be "02/12/2004", my php date format set up default to be "12/02/2004".
So when php reads it from Interbase, php knows it is a date, and php knows interbase date format set up there. And php read it and covert it to php's default date format.
Any expert knowledges here?
How do I set up the default date format for php and for interbase?
Thanks!