I am using the code below to insert time into a table, and this is the output it's giving me: 0000-00-00
//table
start DATETIME,
//code to insert date into db
$_POST['start']=date("Y-m-d H:i:s");
$insert = "INSERT INTO eguardIPs (Field1,Field2,Field3,start)
VALUES ('".$_POST['Field1']."', '".$_POST['Field2']."', '".$_POST['Field3']."', '".$_POST['start']."')";
$add_start = mysql_query($insert);