<?php
// COUNTDOWN
// Initialize class
$cd = new countDown();
// The event (year,month,day)
$cd->setEnd(2005,5,12);
// Optional: set language (default is in english)
// $cd->setLangTxt("anno/i","giorno/i","ora/e","minuto/i","secondo/i");
// Optional: set texts before and after the date (even if is passed)
$thisCountDown = $cd->showCountDown("Still","for event","Passed","for the event");
?>