Hi
I have a php events calendar (index.php) and I want to integrate the script in my HTML page. Is there a way to do that
Here is the script
<?php
include ("includes/header.php");
// Check for a Month Change submission
if ($submit) {
// Subtract one from the month for previous, add one for next
if ($submit == "Prev") {
$month_now--;
} else {
$month_now++; }
$date = getdate(mktime(0,0,0,$month_now,1,$year_now));
} else {
$date = getdate();
}
$month_num = $date["mon"];
$month_name = $date["month"];
$year = $date["year"];
$date_today = getdate(mktime(0,0,0,$month_num,1,$year));
$first_week_day = $date_today["wday"];
$cont = true;
$today = 27;
while (($today <= 32) && ($cont)) {
$date_today = getdate(mktime(0,0,0,$month_num,$today,$year));
if ($date_today["mon"] != $month_num) {
$lastday = $today - 1;
$cont = false;
}
$today++;
}
// allow for form submission to the script for forward and backwards
echo"
<form action=\"index.php\" method=\"post\" name=\"calendar\">
<input type=\"hidden\" name=\"month_now\" value=\"$month_num\" />
<input type=\"hidden\" name=\"year_now\" value=\"$year\" />
<table width=\"200\" align=\"center\">
<tr><td><input type=\"submit\" name=\"submit\" value=\"Prev\" class=\"form\" /></td>
<td align=\"right\"><input type=\"submit\" name=\"submit\" value=\"Next\" class=\"form\" /></td>
</tr>
</table>
</form>
<table border=\"0\" cellspacing=\"0\" cellpadding=\"1\" align=\"center\" bgcolor=\"#FFFFFF\">
<tr>
<td bgcolor=\"#85869E\" class=\"title\" align=\"center\" valign=\"middle\">$month_name $year</td>
</tr>
<tr>
<td>
<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#85869E\">
<tr align=\"center\" valign=\"bottom\">
<td class=\"daynames\">Sun.</td>
<td class=\"daynames\">Mon.</td>
<td class=\"daynames\">Tues.</td>
<td class=\"daynames\">Wed.</td>
<td class=\"daynames\">Thurs.</td>
<td class=\"daynames\">Fri.</td>
<td class=\"daynames\">Sat.</td>
</tr>";
// begin placement of days according to their beginning weekday
$day = 1;
$wday = $first_week_day;
$firstweek = true;
while ( $day <= $lastday) {
if ($firstweek) {
echo "<tr align=\"left\" valign=\"top\">";
for ($i=1; $i<=$first_week_day; $i++) {
echo "<td></td>";
}
$firstweek = false;
}
if ($wday==0) {
echo "<tr align=\"left\" valign=\"top\">";
}
// make each day linkable to the following result.php page
if ( intval($month_num) < 10) { $new_month_num = "0$month_num"; }
elseif (intval($month_num) >= 10) { $new_month_num = $month_num; }
if ( intval($day) < 10) { $new_day = "0$day"; }
elseif (intval($day) >= 10) { $new_day = $day; }
$link_date = "$year-$new_month_num-$new_day";
echo "<td class=\"day\"><a href=\"javascript:;\" onclick=\"openBrWindow('results.php?eventid=$link_date','Privacy','scrollbars=yes','700','500','true')\">$day</a></td>";
if ($wday==6) {
echo "</tr>\n";
}
$wday++;
$wday = $wday % 7;
$day++;
}
echo "
</tr>
</table>
</td>
</tr>
</table>";
include ("includes/footer.php");
?>