det er lige netop IKKE php filen du har nappet dig der - der er kun HTML indholdet/outputtet og din html kan du ikke gøre noget for at beskytte. den kode der viser det du har kopieret er flg - og det er ikke helt det sammme ;o):
<style>
.calendarTable {
background-color: #b0c4de;
border: 1px solid #000000;
padding: 3px;
font-family: Tahoma;
font-size: 11px;
}
.calendarMonth {
font-weight: bold;
color: darkred;
text-align: center;
width: 30%;
}
.calendarLinks {
width: 35%;
}
.calendarDaynames {
background-color: #ffdead
}
.calendarMonthbar {
background-color: #66cdaa;
}
.calendarDays {
vertical-align: top;
height: 30px;
width: 70px;
}
.eventBirthday {
background-color: #adff2f;
}
.foo {
background-color: #ee82ee;
}
.monthday {
background-color: #9acd32;
color: #4682b4;
font-size: 13px;
}
</style>
<?php
// Her starter PHP output
include("class.calendar.php");
$month = ($_GET["month"] ? $_GET["month"] : date("n"));
$year = ($_GET["year"] ? $_GET["year"] : date("Y"));
$cal = new fooCalendar($month, $year);
$cal->addEvent("10-".$_GET["month"]."-2003", "The 10th", "
http://madd.dk", "foo", "Boing");
$cal->addEvent("24-".$_GET["month"]."-2003", "Monthday", "
http://madd.dk", "monthday", "Monthday with girlfriend..");
$cal->doCalendar();
?>