Buenas noches, con el date picker estoy insertando la fecha con el formato dateFormat: 'yy-mm-dd'.
Ejemplo: 2014-07-17.
Pero como en la base el campo es datetime necesito insertar la fecha y la hora.
Probé de esta manera pero no me funciona:
dateFormat: 'yy-mm-dd h:i:s'.
Lo que necesito es que quede así: 2014-07-17 23:15:13.
Se podrá concatenar la hora al hacer el Update?
El código del Update mío es:
Código PHP:
Ver originalif ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) { $updateSQL = sprintf("UPDATE presupuestos SET fecha_inicio=%s, fecha_fin=%s WHERE id=%s", GetSQLValueString($_POST['fecha_inicio'], "text"),
GetSQLValueString($_POST['fecha_fin'], "text"),
GetSQLValueString($_POST['id'], "int"));
Y este es el código de mi formulario:
Código PHP:
Ver original<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<input name="fecha_inicio" type="text" id="fecha_inicio" value="
<?php echo htmlentities($row_rs_detalle['fecha_inicio'], ENT_COMPAT, ''); ?>" size="32" />
<input name="fecha_fin" type="text" id="fecha_fin" value="
<?php echo htmlentities($row_rs_detalle['fecha_fin'], ENT_COMPAT, ''); ?>" size="32" />
<input type="image" src="boton.jpg" />
<input type="hidden" name="MM_update" value="form1" />
<input type="hidden" name="id" value="<?php echo $row_rs_detalle['id']; ?>" />
</form>
Me podrán ayudar?
Muchas gracias!