简体   繁体   English

日历预订系统出错

[英]Error in calendar booking system

I have a 'calendar booking system' in PHP and below are code snippets of that. 我在PHP中有一个“日历预订系统”,下面是代码片段。 I am running WampServer2.4 我正在运行WampServer2.4

<?
include('php/connect.php'); 
include('classes/class_calendar.php');

$calendar = new booking_diary($link);

if (isset($_GET['month'])) $month = $_GET['month']; else $month = date("0");
if (isset($_GET['year'])) $year = $_GET['year']; else $year = date("0");
if (isset($_GET['day'])) $day = $_GET['day']; else $day = 0;

$selected_date = mktime(0, 0, 0, $month, 01, $year); // Make a timestamp based on the GET values
$first_day = date("N", $selected_date) - 1; // Gives numeric representation of the day of the week 1 (for Monday) through 7 (for Sunday)
$back = strtotime("-1 month", $selected_date);
$forward = strtotime("+1 month", $selected_date);

?>

And

<?php     

if($_SERVER['REQUEST_METHOD'] == 'POST') {
    $calendar->after_post($month, $day, $year);  
}   

// Call calendar function
$calendar->make_calendar($selected_date, $first_day, $back, $forward, $day, $month, $year);

?>

And the function is 功能是

function make_calendar($selected_date, $first_day, $back, $forward, $day, $month, $year) {

    // Add a value to these public variables  
    $this->day = $day;    
    $this->month = $month;
    $this->year = $year;

    $this->selected_date = $selected_date;    
    $this->first_day = $first_day;

    $this->back = $back;
    $this->back_month = date("m", $back);
    $this->back_year = date("Y", $back); // Minus one month back arrow

    $this->forward = $forward;
    $this->forward_month = date("m", $forward);
    $this->forward_year = date("Y", $forward); // Add one month forward arrow    

    // Make the booking array
    $this->make_booking_array($year, $month);

} }

But when I try to run the code, I am getting this annoying error. 但是当我尝试运行代码时,我收到了这个恼人的错误。

Notice: Undefined variable: calendar in C:\\wamp\\www\\calendar\\calendar.php on line 42 注意:未定义的变量:第42行的C:\\ wamp \\ www \\ calendar \\ calendar.php中的日历

Fatal error: Call to a member function make_calendar() on a non-object in C:\\wamp\\www\\calendar\\calendar.php on line 42 致命错误:在第42行的C:\\ wamp \\ www \\ calendar \\ calendar.php中的非对象上调用成员函数make_calendar()

Can anyone tell where I am getting wrong in my script. 任何人都可以告诉我在我的脚本中出错的地方。

where your function make_calendar() is defined? 你的函数make_calendar()定义在哪里? According to your code, it should be in booking_diary class 根据您的代码,它应该在booking_diary类中

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM