这是我的 HTML 代码:
<p>Leave duration:<input type = "date" name="leave_start"/>to
<input type = "date" name="leave_end"/></p>
下面是我的 SQL 代码:
$sql = ("INSERT INTO `leave` ( `Leave_Start` , `Leave_End` )
VALUES({$_POST["leave_start"]},{$_POST["leave_end"]}')");