how to update datetime cell in MySql and PHP?

2013-03-15T16:15:25

I am trying to update an event date & time saved in one cell, I got everything right except the date is not updated,. My update works except the event date & time.

$id            = $_POST['id']; 
$package       = $_POST['package']; 
$type          = $_POST['type']; 
$shortdesc     = $_POST['shortdesc']; 
$vanue         = $_POST['vanue'];
$event_start   = $_POST['fmt_date'] . ' ' . $_POST['fmt_time'] . 'Y-m-d H:i:s';


$sql="UPDATE event_table SET package='$package', type='$type', 
shortdesc='$shortdesc', vanue='$vanue', 
event_start= '$event_start'  WHERE id ='$id' LIMIT 1";
$result=mysql_query($sql);

Copyright License:
Author:「Siman Maxamed」,Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.
Link to:https://stackoverflow.com/questions/15427560/how-to-update-datetime-cell-in-mysql-and-php

About “how to update datetime cell in MySql and PHP?” questions

I have two tables in MySQL, and each table has its own datetime field. I want to copy the datetime of table A to overwrite the datetime of table B. I use PHP. $result = mysql_query("select * ...
I am trying to update an event date & time saved in one cell, I got everything right except the date is not updated,. My update works except the event date & time. $id = $_POST[...
I have an issue in updating only date in datetime field type in MYSQL. I am taking the input from the user (dd/mm/yyyy) using PHP and changing only the date using UPDATE mysql statement. But the
I have problems comparing dates between a date created with new dateTime () in php, and a date taken from a DATETIME field of a Mysql table. With the following code, save a date in a DATETIME fiel...
I have tried many syntaxes to update a cell in my database, but none of them worked. The following is my scenario. My database has 3 fields of types Time(datetime), Flow(float) & Cumulative(fl...
I have a table where it has two datetimes, one of them is a 'completed' datetime, therefore, if it is NULL then the user has not completed. I am trying to do an update, to update their mobile numb...
How can i update new datetime in asia/manila timezone? SQL CREATE TABLE logtrail_login( login_id INT(100) PRIMARY KEY AUTO_INCREMENT, admin_id INT(100), dateandtime_login DATETIME DEFA...
Im trying to add 12 seconds to a mysql datetime object via php. My php code generates the following query: "UPDATE Stats SET Usage = 1970-01-01 00:00:12" however the query fails. My php code is as
I have an update query in my code - and I want to check if this update REALLY changed any cell - when I try mysqli_affected_rows() - it returns to me that rows were affected/changed, even if they w...
$newtime = date("Y-m-d H:i:s", time() + 600); mysql_query("UPDATE rounds SET clock = $newtime WHERE `round`='$CurrentRound' ") or die(mysql_error()); //update DB This code is failing to add the c...

Copyright License:Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.