コード例 #1
0
ファイル: index.php プロジェクト: blotted/Calendar
<?php

require_once "inc/lib.inc.php";
require_once 'inc/db_connect.php';
$self = $_SERVER['PHP_SELF'];
$month = isset($_GET['month']) ? $_GET['month'] : date('m');
$year = isset($_GET['year']) ? $_GET['year'] : date('Y');
?>

<!DOCTYPE html>
<html lang="ru">
<head>
	<meta charset="UTF-8">
	<link href="main.css" media="all" rel="stylesheet" type="text/css" />
	<title>Календарь</title>
</head>
<body>
<?php 
echo selectDate($month, $year);
echo makeCalendar($month, $year);
?>
	<p><a href="all_events.php">Добавление и редактирование выходных</a></p>
</body>
</html>
コード例 #2
0
<?php

require_once "../includes/dbconnection.php";
require_once "../includes/all_functions.php";
if (isset($_GET['cname'])) {
    $eDate = array();
    $cname = $_GET['cname'];
    $result = selectDate($cname);
    while ($row = $result->fetch_assoc()) {
        $eDate[] = $row['Exam_Date'];
    }
    echo json_encode($eDate);
}
if (isset($connection)) {
    mysqli_close($connection);
}