I am trying to save a datestring in PHP into a MySQL database as timestamp datatype. I found a lot of posts about this, but none of them worked for me. This is what I've tried:
$date = $_POST['date'];
$timestamp = date("m/d/Y", strtotime($date));
$sql = "insert into sale(service, amount, date, customerid_fk) values('$service', '$amount', '$timestamp', '$id');";
But in the database, I only get:
0000-00-00 00:00:00
The input string from the POST object is 05/30/2013. Thanks a lot for your support!
Y-m-dformat for timestamps. Change the format string accordingly and you'll be good.