- Helps you create a calendar that lets you organize your personal schedules.
- Generate a QR code for a calendar web page so you can share it with others.
- If you need to share a schedule with multiple people, such as an event schedule for a club, this open-source help you easy to resolve it.
- It helps you easily generate QR code images and can also be used for promotional materials.
1.Download open-source or fork this repository
- https://fullcalendar.io/
- Calendar Open Source
- https://sourceforge.net/projects/phpqrcode/
- QR code open source
- https://github.com/markFT39/OSSLabFinal
2.Modifying the PHP QRcode File
- If you download PHPQR codes yourself, you need to write a php file that generates an image file.
<html>
<head>
<title></title>
</head>
<body>
<?php
include_once "qrlib.php";
$codeContents = "Address of your calendar web page";
$filePath = md5($codeContents).".png";
if(!file_exists($filePath)) {
QRcode::png($codeContents, "QRcode.png");
echo "파일이 정상적으로 생성되었습니다.";
echo "<hr/>";
} else {
echo "파일이 이미 생성되어 있습니다.\n파일을 지우거나 이름을 바꾸어 실행하세요.";
echo "<hr/>";
}
echo "저장된 파일명 : ".$filePath;
echo "<hr/>";
echo "<img src='".$filePath."'/>";
?>
</body>
</html>
- Please add the following source code to your calendar web page
<img src="../phpqrcode/QRcode.png">
3.Now you are ready to proceed with your own project.
- Add a schedule and share it with the QR code
- I made this by combining two open sources, fullcalendar, and PHP QRcodes.
- The category in the calendar has been modified to suit the university.
- A part of the code has been newly created to obtain an image file of the QR code.
- The calendar web page has been modified so that ORcode image can be displayed on the calendar web page screen.
- https://fullcalendar.io/
- Calendar Open Source
- https://github.com/SaintSilver/FullCalendar-Example
- Calendar open source used for this repository
- https://sourceforge.net/projects/phpqrcode/
- QR code open source
- [email protected]
- my email adress