我在我的codeigniter项目中使用了bootstrap-datetimepicker的示例。 我创建了一个只带有datetimepicker输入的表单。
视图:
<?php // Change the css classes to suit your needs
$attributes = array('class' => '', 'id' => '');
echo form_open('/calendario/nadevent/', $attributes); ?>
<div class="form-group">
<label for="reservationtime">Fecha:</label>
<div class="input-group">
<span class="input-group-addon">
<i class="fa fa-calendar"></i>
</span>
<input type="text" name="reservationtime" id="reservationtime" class="form-control" value="<?php echo set_value('reservationtime') ?>" />
</div>
</div>
<?php echo form_submit( 'submit', 'Submit','class="btn btn-default"'); ?>
<?php echo form_close(); ?>
JS:
$('#reservationtime').daterangepicker({timePicker: true, timePickerIncrement: 30, format: 'DD-MM-YYYY hh:mm:ss', timePicker12Hour: false, separator: '/'});
datepicker工作正常,但是当我提交表单时,我想格式化数据并拆分成数组:
控制器:
$this->form_validation->set_rules('reservationtime', 'reservationtime', '');
$array = explode('/',set_value('reservationtime'));
然后我尝试插入值:
form_data = array(
'start' => $array[0],
'end' => $array[1]
;
但如果我打印数组,则为空:
Array ( [start] => [end] => )
代码有问题吗?
感谢您的帮助:)
答案 0 :(得分:-1)
你真的没有从表单中获取数据,你可以转储$ _POST吗?