- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
switch ($search_keywords[$i]) {
case '(':
case ')':
case 'and':
case 'or':
$Search->Where($search_keywords[$i]);
break;
default:
$keyword = tep_db_prepare_input($search_keywords[$i]);
$Search->Where("(pd.products_name LIKE '%" . tep_db_input($keyword) . "%' OR p.products_model LIKE '%" . tep_db_input($keyword) . "%' OR m.manufacturers_name LIKE '%" . tep_db_input($keyword) . "%'");
if ( isset($get->search_in_description) && ($get->search_in_description == 1) ) {
$Search->Where("OR pd.products_description LIKE '%" . tep_db_input($keyword) . "%'");
}
$Search->Where(")");
break;
}
Комментарии (0) RSS
Добавить комментарий