<?php /** * eventCreator * eventCreator * ver 2.0 * * The iCal file event php-HTML form editor * * copyright (c) 2007 Kjell-Inge Gustafsson kigkonsult * www.kigkonsult.se/iCalcreator/eventCreator/index.php * hide@address.com * updated 20070703 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * This is php-script including eventCreator.php * **/ ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head<?php echo (isset($_REQUEST['v']['lang'])) ? ' lang="'.$_REQUEST['v']['lang'].'"' : ' lang="en"'; ?>> <title>eventCreator testing</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="author" content="kigkonsult - Kjell-Inge Gustafsson" /> <meta name="copyright" content="2007 kigkonsult" /> <meta name="keywords" content="ical, xcal, rss, calendar, rfc2445, php, create, generate, icalender" /> <meta name="description" content="eventCreator is a PHP implementation of RFC 2445 and RSS event." /> <link rel="shortcut icon" href="images/favicon.ico"/> <link href="eCstyle.css" rel="stylesheet" type="text/css" /> </head> <body> <?php $time_start = microtime(true); require_once( 'eventCreator.php' ); $time_end = microtime(true); $time = $time_end - $time_start; echo "<br /><small>execute time: ".number_format( $time, 4 )." secs</small>"; ?> </body> </html>