two different calendars on same web page ???
I am running two copies of the calendar.. each with a different mySQL database.
I'd like to display the data from BOTH calendars on one web page.
Could someone share with me how to do that.. (because the code on my web page currently would have no way of determining which calendar it was looking at.
Code:
<?php $OL=1; require ("showCalendar.php"); ?>
</p>
</div>
<table align="center">
<tr>
<td><?php require ("showCalendar.php"); ?>
</td>
<td width="0" align="left" valign="top"><a name="escOL"> </a> </td>
</tr>
</table>
<div align="center"></div>
<p align="center"><span class="style4"> </span><a href="http://mskweb3.mskcc.org/eday/index.cfm?CalendarID=3"><br>
</a></p>
</div></td>
<td width="256" valign="top"><div align="right">
<p><span class="style4"><a href="http://rta.mskcc.org/rta/escal_rec/body.php">SKI Recruitment Calendar</a> <a href="http://mskweb3.mskcc.org/eday/index.cfm?CalendarID=3"><br>
RTA Vacation calendar</a> <br>
<a href="FMP7://140.163.188.196/RTDB.fp7">RTA Database System</a> </span><a href="http://mskweb3.mskcc.org/eday/index.cfm?CalendarID=3"><br>
</a></p>
</div></td>
</tr>
</table>
<div align="center">
<p align="center"><span class="style3 style1"><span class="style4">Upcoming week:</span><br>
<br>
</span>
<?php
$LIST=1;
$listWeeks = 1;
$DF = "D - M d";
$template="monthly.php";
require ("showCalendar.php");
?>
|