load_files(); } require_once(HEADERF); echo "
"; echo $cal->make_input_field( // calendar options go here; see the documentation and/or calendar-setup.js array('showsTime' => true, 'showOthers' => true, 'ifFormat' => '%Y/%m/%d %I:%M %P', 'weekNumbers' => false, 'timeFormat' => '12'), // field attributes go here array('style' => 'color: #840; background-color: #ff8; border: 1px solid #000; text-align: center', 'name' => 'date1', 'value' => strftime('%Y/%m/%d %I:%M %P', strtotime('now')))); echo "
"; unset($cal_options); unset($cal_attrib); $cal_options['showsTime'] = false; $cal_options['showOthers'] = false; $cal_options['weekNumbers'] = true; $cal_attrib['class'] = "tbox"; $cal_attrib['name'] = "date2"; $cal_attrib['value'] = "[select date]"; echo $cal->make_input_field($cal_options, $cal_attrib); echo "
"; require_once(FOOTERF); ?>