I have a database that you converted to WordPress History in the old database (1472877023) And the new (2014-05-16 18:49:52) I did this code but it does not work
$Sql = mysql_query("SELECT * FROM no620_content3 ");
while ($row= mysql_fetch_array($Sql)) {
$dates = date("m-d-Y h:g:i ",$row['date_time']);
$arid=$row['id'];
$query = "UPDATE wp_posts SET ' post_date' = '$dates' WHERE ID = '$arid' ";
mysql_query($query);
}