Hi, Niko! Yeah, I had trouble w/dates and times at first, too. I got confused the most with the word "timestamp". In the MySQL manual, there are several variations of the timestamp type and it took me a while to realize my use of it was in yyyymmddhhiiss format. In the PHP manual, it referred to timestamps but it was referring to an integer (seconds since unix epoch).
You can store dates and times in the db however you want. What I do is parse the dates/times to comoponent parts and then convert the dates to unix epoch integers using PHP's mktime() function. Then, you can show your dates and times in any format you want using PHP's date() function, e.g. date ("m-d-Y g:i:s a", $myunixepochfield)
This is what I do...
formpage > transitionpage (INSERT...) auto-refreshes to > confirmpage (SELECT...)
Hope this helps!
--ST