T
|
thesofa 1/22/2007 |
use advanced search? |
|
zzapper author 1/23/2007 |
use advanced search?
|
![]() |
Sergey Kornilov admin 1/23/2007 |
This feature is not available in current version of PHPRunner. |
|
zzapper author 2/25/2007 |
This feature is not available in current version of PHPRunner. As a custom solution you can build ListOnLoad event that processes input and builds SQL query that can be assigned to $strSQL variable (make sure you define it as global $strSQL;)
|
![]() |
Alexey admin 2/26/2007 |
Hi, if(@$_SESSION[$strTableName."_search"]==1) // regular search { ... // put your code here ... } else if(@$_SESSION[$strTableName."_search"]==2) // advanced search |
|
zzapper author 2/26/2007 |
Hi, either implement more intelligent modification of SQL string or add your code directly to generated ..._list.php file before ORDER BY clause is added. Here is the place in the script to put your code to:
|