Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/289.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 使用fullcalendar进行数据库查询_Php_Jquery_Fullcalendar - Fatal编程技术网

Php 使用fullcalendar进行数据库查询

Php 使用fullcalendar进行数据库查询,php,jquery,fullcalendar,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 },

好的,我正在尝试从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!');
    },
}
这带来了第一个问题,当我运行这个时,我在开发工具中得到一个错误,说start没有定义?日历不会自动生成开始和结束时间吗

其次,如果我在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);
    ?>

我认为fullcalendar的目标是什么?任何帮助都将不胜感激

好的,我想我已经解决了这个问题,按照kamlesh.bar的建议我去看了

看完他的代码后,我将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生成的结果输入到日历中


至于start:stat.unix()问题,我只是使用php中的strotime将其更改为unix时间格式

我想您忘记了返回结束日期。它实际上也需要结束日期吗?结束是可选的,但id是必需的(id,title,start),而全天和结束是可选的[{“id”:“1”,“title”:“Booking”,“start”:“2015-06-05T14:00:00+02:00”,“结束”:“2015-06-05T16:00:00+02:00”,“全天”:false}]是否有一份回报清单?我只是在看硬编码事件需要什么,它们基本上只是标题和开始。
events: JSON.parse(json_events),