Search code examples
yiiyii-extensions

YII :: CJuiDateTimePicker is not saving any data to mysql


I am using CJuiDateTimePicker in my yii application but can't save data into mysql. How can Save data into MySQL

CODE::

    <?php Yii::import('application.extensions.CJuiDateTimePicker.CJuiDateTimePicker');
        $this->widget('CJuiDateTimePicker',array(
            'model'=>$model, //Model object
            'attribute'=>'pp_date', //attribute name
            'language'=> '',
            'mode'=>'date', 
            'options'=>array(
                'showAnim'=>'fold',
                'changeMonth' => 'true',
                'changeYear' => 'true',
                'showOtherMonths' => 'true',
                'selectOtherMonths' => 'true',
                'showOn' => 'both',
        ),
    ));?> 

Any Helps appreciated


Solution

  • Check whether the Dat and Time format are mysql format

    dd-mm-yyyy hh:mm:ss