使用fullcalendar进行数据库查询

时间:2015-06-04 04:49:04

标签: php jquery fullcalendar

好的我试图从MySQL数据库中提取事件来填充日历。开始时间存储在Unix时间中,因此我使用了以下事件源。

events: {
    url: '/php/booking_events.php',
    type: 'POST',
    data: {
       start: start.unix(),
       end: end.unix(),
       branch: branch.id_office,
       instrument: inst
    },
    error: function() {
       alert('there was an error while fetching events!');
    },
}

这引出了第一个问题,当我运行这个时,我在dev工具中得到一个错误,说启动没有定义?日历是否自动生成开始和结束时间?

其次,如果我手动将参数输入到我的PHP中,它会生成一个JSON数组然后回复它,但是脚本经常说“获取事件时出错了!”'

    <?php
    require_once('../Connections/localhost.php');
    require_once("../Includes/functions.php");

    //if (!isset($_POST['start']) || !isset($_POST['end'])) {
    //  die("Please provide a date range.");
    //}

    //$range_start = parseDateTime($_POST['start']);
    //$range_end = parseDateTime($_POST['end']);
    //$branch = GetSQLValueString($_POST['id_office'], "int");
    //$inst = GetSQLValueString($_POST['instrument'], "int");

    $range_start = '1433462401';
    $range_end = '1433721599';
    $branch = 2;
    $inst = 3;

    // Parse the timezone parameter if it is present.
    $timezone = null;
    if (isset($_POST['timezone'])) {
        $timezone = new DateTimeZone($_POST['timezone']);
    }

    // Query database to get events
    mysql_select_db($database_localhost, $localhost);
    $query_Events = sprintf("SELECT hm_classes.datetime, hm_classes.id_student, hm_classes.inst FROM hm_classes INNER join hm_rooms ON hm_classes.id_room = hm_rooms.id_room WHERE datetime BETWEEN %s AND %s AND id_office = %s AND inst = %s", $range_start, $range_end, $branch, $inst);
    $Events = mysql_query($query_Events, $localhost) or die(mysql_error());
    while ($row = mysql_fetch_assoc($Events)){
    $id = $row['id_class'];
    $title = 'Booking';
    $start = date('c', $row['datetime']);
    $end = date('c', ($row['datetime'] + hoursToSecods($row['Session'])));
    $input_arrays[]= array(id => $id, title => $title, start => $start, end => $end, allDay =>'false');
}


    // Send JSON to the client.
    echo json_encode($input_arrays);
    ?>

回声结果是

[{"id":"1","title":"Booking","start":"2015-06-05T14:00:00+02:00","end":"2015-06-05T15:00:00+02:00","allDay":"false"}]

这是我认为fullcalendar之后?任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

好吧我想我已经解决了这个问题,按照kamlesh.bar的建议我去了http://www.jqueryajaxphp.com/fullcalendar-crud-with-jquery-and-php/

查看完他的代码后,我将AJAX请求从主fullcalendar脚本中分离出来并给它自己的功能。

function getEvents(){
        $.ajax({
            url: 'booking_events.php',
            type: 'POST', // Send post data
            data: {type: 'fetch',
                   branch: $('#branch').val(),
                   inst: $('#instrument').val()},
            async: false,
            success: function(s){
                json_events = s;
            }
        })
    }

然后在fullcalendar中我将事件设置为

events: JSON.parse(json_events),

现在允许将php生成的结果输入日历。

至于那个开始:stat.unix()问题,我只是在php中使用strtotime将其更改为Unix时间格式