PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Tim Akinbo   Yahoo Calendar   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: An example using the Yahoo Calendar class
Class: Yahoo Calendar
Generates URLs that add events to Yahoo Calendar
Author: By
Last change:
Date: 21 years ago
Size: 273 bytes
 

Contents

Class file image Download
<?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>";

?>