Date Format
I have a program running at the moment but the date format keep on changing every time I update my database. Date format is on UK format dd/mm/yy but when I update or save it, turns to US format mm/dd/yy. Please help!
this is actually a system setting. the best way to work around it that I have seen is to use non-interpretable date formats (like 1-Jan-2007), whatever you can find that your system will still recognize as a date so you can still manipulate it. As long as you can still manipulate it, display it on the web in whatever format you prefer, but send it to the db in some non-ambiguous format.
Jared