In the most simple example I can think of, for something like this: *http://www.mysite.com/lessons/dashboard4/2014-09-01 <http://www.mysite.com/lessons/dashboard4/2014-09-01>* $this->Html->link('title', array('controller' => 'lessons', 'action' => 'dashboard4', $date);
*http://www.mysite.com/lessons/dashboard4/start:2014-09-01/end:2014-09-26 <http://www.mysite.com/lessons/dashboard4/start:2014-09-01/end:2014-09-26>* $this->Html->link('title', array('controller' => 'lessons', 'action' => 'dashboard4', 'start' => $dateStart, 'end' => $dateEnd)); I'd check out this post by euromark http://www.dereuromark.de/2013/05/04/passed-named-or-query-string-params/ Personally I'd be more inclined to send search data via ajax with the use of an element that re-renders with the new query results on success, but that's just my 2 cents on search filters. On 23 September 2014 13:15, ajt <[email protected]> wrote: > Hi, > > How do I pass the date field below entered as a parameter so I can search > the date? > > echo $this->Form->input( > 'custom date', > array( > 'type' => 'date', > 'selected' => array( > 'year'=>date('Y') > ), > 'minYear' => date('Y') , > 'maxYear' => date('Y') +1 > ) > ); > > echo $this->Html->link($this->Html->tag('i', '', array('class' > => 'icon-book','title'=>'Report')).'Custom Range', array( > 'controller' => 'lessons', 'action' => 'dashboard4' > ),array('escape'=>false,'class' => 'btn btn-small')); > > > -- > Like Us on FaceBook https://www.facebook.com/CakePHP > Find us on Twitter http://twitter.com/CakePHP > > --- > You received this message because you are subscribed to the Google Groups > "CakePHP" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/cake-php. > For more options, visit https://groups.google.com/d/optout. > -- Kind Regards Stephen Speakman -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Groups "CakePHP" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/cake-php. For more options, visit https://groups.google.com/d/optout.
