如何打印包含所有事件的给定日期范围的完整日历?

问题描述 投票:0回答:1

如何打印全历或导出PDF或Excel格式的全历?

例如

输入。

开始日期:2020年1月1日

结束日期:2020年12月31日

点击按钮后,它将获得给定日期范围内的所有事件,并将其填充到 全历

会有类似...

  1. 2020年1月26日会有一个活动--澳大利亚日。

  2. 2020年2月14日,将有一个活动--情人节。

  3. ...

  4. ...

  5. 2020年12月25日,其中将有一个活动--X-Mas Day。

正如你所看到的,在不同的月份会有多个事件,我正在寻找的是打印或导出这个完整的日历在一个单一的页面与所有12个月的数量。

你的回答将帮助许多人。

javascript jquery fullcalendar fullcalendar-4
1个回答
1
投票

你可以使用下面的示例代码编辑,希望它有助于

<?php

header("Content-Type: text/html; charset=iso-8859-9");
header("Content-Type: text/html; charset=windows-1254");
header("Content-Type: text/html; charset=x-mac-turkish");

$today = date("d-m-Y");

// Defines the name of the export file "codelution-export.xls" 
header("Content-Disposition: attachment; filename=$today-BOOK.xls");

$date = '2020-05-01';

//get end date of month
$end = '2020-05-' . date('t', strtotime($date));


include("../../DATABASE.php");
?>

<table>
  <tr>
    <td>PERSONAL</td>

    <?php
      while(strtotime($date) <= strtotime($end)){
        $day_num = date('d', strtotime($date));
        $day_name = date('l', strtotime($date));
        $date = date("Y-m-d", strtotime("+1 day", strtotime($date)));
        echo "<td>$day_num <br/> $day_name</td>";
      }
    ?>
  </tr>

  <?php
    //get end date of month
    $hsql=mysql_query("select * from XXXUSER"); 
    while($hyaz=mysql_fetch_array($hsql)){
      $firstname=$hyaz["firstname"];
      $kullanicidi=$hyaz["id"];
      echo "<tr>";
      echo "<td>$firstname</td>";
      $fromdate = '2020-06-01';
      $todate = '2020-06-' . date('t', strtotime($fromdate));

      while(strtotime($fromdate) <= strtotime($todate)) {
        $geneltarih = date('Y-m-d', strtotime($fromdate));
        $fromdate = date("Y-m-d", strtotime("+1 day",strtotime($fromdate)));
        $xxxsql = mysql_fetch_array(mysql_query("select * from XXXSCHEDULE where kaynakcodu='$kullanicidi' and start_event='$geneltarih'")); 
        $title = $xxxsql["title"];
        echo " <td>$title</td>";
      }

      echo "</tr>";
    }
  ?>
</table>
© www.soinside.com 2019 - 2024. All rights reserved.