search filter in cake 1.3
hi guys,... can anyone help please,... I'm using cake 1.3
how can I filter search results by user firstname
this is my form input:
<?php echo $this->Form->create('User', array('action' => 'search')); ?>
<?php echo $this->Form->text('find', array('style' => 'width: 60px')) ?>
<?php echo $this->Form->end(__('Search', true)); ?>
and this is my users_controller.php
function search() {
$this->User->recursive = 0;
$params = $this->params['url'];
if (!array_key_exists("find", $params)) {
$this->set('users', $this->paginate());
}
else
{
$this->set('users', $this->paginate(array("User.firstname LIKE '{$params['find']}%'")));
}
}
thanks in advance
chris
Discussions are closed to public comments.
If you need help with Lighthouse please
start a new discussion.
Keyboard shortcuts
Generic
| ? | Show this help |
|---|---|
| ESC | Blurs the current field |
Comment Form
| r | Focus the comment reply box |
|---|---|
| ^ + ↩ | Submit the comment |
You can use Command ⌘ instead of Control ^ on Mac
1 Posted by Nicole on 04 Mar, 2013 11:51 PM
Chris -
You need to submit this to cakephp.lighthouseapp.com. This is the support forum for Lighthouse proper.
Thanks,
Nicole
Nicole closed this discussion on 04 Mar, 2013 11:51 PM.