C
|
cgphp 9/19/2011 |
You can use an alias for the date field and set it as time and then combine the values before the db update. SELECT
$values["date_field"] = date("Y-m-d",strtotime($values["date_field"])) . " " . date("H:i:s",strtotime($values["time_field"])); |