C
|
cgphp 11/17/2013 |
If you want to preserve the existing where clause, use the following statement: $strWhereClause = whereAdd($strWhereClause, " your_field_name = 'your_custom_value' ");
|
S
|
sgchan author 11/17/2013 |
If you want to preserve the existing where clause, use the following statement: $strWhereClause = whereAdd($strWhereClause, " your_field_name = 'your_custom_value' ");
|
C
|
cgphp 11/17/2013 |
Just tested and I can say $strWhereClause works well without whereAdd. The where clause is preserved in any case. |