将datepicker中的日期与可用的数据库日匹配,并显示结果

时间:2013-12-09 11:00:01

标签: php mysql datepicker

datepicker:

 <b>Date of Journey</b>
<input id="datepick" size="19" name="datepick" class="text_box2" title="Departure Date" /> 
<script type="text/javascript">
$(function() {
$( "#datepick" ).datepicker({ minDate: 0});
 });
</script>

数据库

enter image description here

enter image description here

我想根据数据库中相应的可用日来搜索总线名称..只是不能为它编写语法...任何帮助?提前谢谢。

2 个答案:

答案 0 :(得分:1)

您需要将日期转换为星期几,然后相应地操纵输出。

首先使用strtotime解析日期纠察队。

$date = strtotime($yourDateFieldValue);

然后使用date函数格式化$date

$day = date("D", $date);

答案 1 :(得分:0)

从您的约会对象中取出

$day_of_week = date("D", strtotime($datepicker_date));  

这里$ datepicker_date是你从datepicker获得的日期。在$ date中,您将获得三个字母代表星期几。您现在可以根据需要进行操作  有关详细信息,请参阅http://php.net/manual/en/function.date.php