3.3.9.1 release
[phpmyadmin/madhuracj.git] / calendar.php
blob58cdf421e686e2bee4e5252e074d83810cb08be4
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin
7 */
9 /**
12 require_once './libraries/common.inc.php';
13 require_once './libraries/header_http.inc.php';
14 $page_title = $strCalendar;
15 require './libraries/header_meta_style.inc.php';
16 $GLOBALS['js_include'][] = 'common.js';
17 $GLOBALS['js_include'][] = 'tbl_change.js';
18 require './libraries/header_scripts.inc.php';
20 <script type="text/javascript">
21 //<![CDATA[
22 var month_names = new Array("<?php echo implode('","', $month); ?>");
23 var day_names = new Array("<?php echo implode('","', $day_of_week); ?>");
24 var submit_text = "<?php echo $strGo . ' (' . $strTime . ')'; ?>";
25 //]]>
26 </script>
27 </head>
28 <body onload="initCalendar();">
29 <div id="calendar_data"></div>
30 <div id="clock_data"></div>
31 </body>
32 </html>