<?php 
 
include('class.ycal.php'); 
 
$ycal = new ycal(); 
 
// Set the date for the event! YYYYMMDD 
$ycal->date = "20030305"; 
 
// Set title for event 
$ycal->title = "Lunch at Mr. Biggs with Dipo"; 
 
echo "<a href='" . $ycal->genLink() . "'>Lunch at Mr. Biggs with Dipo</a>"; 
 
?>
 
 |