cakephp - How can I use cakeDCs search to perform a search between dates? -


i'm using search plugin cakedc https://github.com/cakedc/search (works fine far). perform search 2 date fields used search in mysql database between value cannot working.

how can that?

i found no working example , documentation confusing me.

--edit: view code:

[html table stuff] <td>     <?php      echo $this->form->input('from', array(         'type' => 'date',         //'div' => false,         'dateformat' => 'dmy',         'minyear' => 2013,         'maxyear' => date('y'),         'style' => 'margin-right: 2px; margin-left: 2px',         'empty' => true,         'timeformat' => null,         'selected' => array(             'day' => 1,             'month' => 1,             'year' => 2013             ),         'empty' => false         ));     ?> </td> <td>     <?php      echo $this->form->input('to', array(         'type' => 'date',         'div' => false,         'dateformat' => 'dmy',         'minyear' => 2013,         'maxyear' => date('y'),         'empty' => true,         'style' => 'margin-right: 2px; margin-left: 2px',         'timeformat' => null,         'selected' => array(             'day' => date('d'),             'month' => date('m'),             'year' => date('y')             ),         'empty' => false         ));     ?> </td> [html table stuff] 


Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -