我的问题是 Enddate 不会添加到我的数据库中,但空间和 startdate 添加就好了。
<?php
include("config.php");
$space=$_POST['space'];
$startdate = date("Y-m-d");
$enddate= "date('Y-m-d', strtotime($Date. ' + 7 days'))";
$query="insert into reservation (Sublessee_space,Res_startdate,Res_enddate) values('$space','$startdate','$enddate')";
mysql_query($query);
mysql_close($server);
header('location:approve.php');
?>