这样我就无法将2个输入放在一起并且只是放入数据库之后
问题是当数据库看起来像这样 0000-00-00 00:00:00
这就是我选择将日期和时间分开以尽可能简化的方式。
function tilmeldAdmin()
{
if ($stmt = $this->mysqli->prepare('INSERT INTO `tilmeldt` (`title`, `info`, `Dato`, `antal`, `opret_navn`, `opret_email`, `opret_id`) VALUES (?, ?, ?, ?, ?, ?, ?)')) {
$stmt->bind_param('sssissi', $title, $info, $Dato, $antal, $opret_navn, $opret_email, $opret_id);
$title = $_POST["title"];
$info = $_POST["info"];
$Dato = $_POST["dob"] . $_POST["time"];//Here is error when it should be entered into the database (Everything else works just fine with no problems)
$antal = $_POST["antal"];
$opret_navn = $_SESSION["navn"];
$opret_email = $_SESSION["mail"];
$opret_id = $_SESSION["id"];
$stmt->execute();
$stmt->close();
}
}
答案 0 :(得分:1)
假设您以YYYY-mm-dd格式获取日期,并且以HH:ii:ss获得时间您的问题是您在两个元素之间缺少空格。
$Dato = $_POST["dob"] .' '. $_POST["time"];
如果您以相对理智的方式提供日期,您可以使用strtotime以您想要的格式获取日期。
$Dato = date("Y-m-d H:i:s", strtotime($_POST["dob"]." ".$_POST["time"]));