J
|
Jane 5/17/2007 |
Chris, |
C
|
cgilpin author 5/19/2007 |
Chris, no PHPRunner doesn't use % as wild card. You can use 4% as search parameter on the List or Advanced search list.
|
J
|
Jane 5/21/2007 |
Chris,
and add following code just after: $searchFor = str_replace('%','\%',$searchFor);
$ret=""; if($strSearchOption=="Contains") and replace it with this one: $ret=""; $sSearchFor = str_replace('%','\%',$sSearchFor); if($strSearchOption=="Contains") |