工具提示数据的日期选择器事件

时间:2016-11-04 10:13:53

标签: php datepicker

我正在尝试动态地从日历中选择日期范围,从数据库中显示工具提示中的数据。

我的代码如下

<html>
<body>
<?php
include "connect.php";

$sql="select * from table_records where rec_time between '$startdate' and   'enddate'";
$result=mysql_query($sql);
$row=mysql_fetch_assoc($result);

$message="Total Fee ".$row["fee"]."\nTotal Time ".$row["fee"];


?>
<table>
<tr title="<?php echo $message; ?>">
<td>
<input type='date' name='stardate'/>
<td><td>
<input type='date' name='enddate'/>
</td></tr>
</body>

在上面的代码中,当用户选择不同的数据范围并在工具提示或标题中显示数据时,我想从数据库中获取数据。请帮忙

0 个答案:

没有答案