I have a field containing a name called selected_name.
I want to return all records WHERE the name is LIKE selected_name
I know that I'm on the right track with this example:
How do i get:
$form->data['selected_name'].
into the value spot? I guess I dont understand the syntax
I want to return all records WHERE the name is LIKE selected_name
I know that I'm on the right track with this example:
<?php
return array( 'model_id.column LIKE' => '%value%' );
?>
How do i get:
$form->data['selected_name'].
into the value spot? I guess I dont understand the syntax