Hi,
I've got a webapp (using php), my clients are java-based and are submitting dates to me using:
System.currentTimeMillis();
so my web app gets it via a post, so it's a string, like:
$submittedTime = "9734367890508";
I want to insert it into a mysql table field, I think either a DATETIME or TIMESTAMP field can store it.
What type of field should I use, and how do I get that submitted value into the mysql table such that I can do queries later on using all the mysql time functions?
Thanks