И не надо писать мне в ПМ
Для слов есть find_in_set, но мне кажется, что ноги растут откуда-то не с того места, надо видеть задачу нормально
Вот форма поиска
<form method="GET" action="search_filter.php">
<p class="nav_p">Поиск по параметрам</p>
<?php
$result = mysql_query("SELECT brand,id FROM `table_products` WHERE type='$type' GROUP BY brand",$link);
if (mysql_num_rows($result) > 0)
{
$row = mysql_fetch_array($result);
do
{
echo '
<div class="child"><li><input '.$checked_brand.' type="checkbox"name="brand[]" value="'.$row["brand"].'" id="checkbrend'.$row["id"].'" /><label for="checkbrend'.$row["id"].'">'.$row["brand"].'</label></li></div>
';
}
while ($row = mysql_fetch_array($result));
}
?>
<div id="block-input-price">
<ul>
<li><p>от</p></li>
<li><input type="text" id="start-price" name="start_price" value="1000" /></li>
<li><p>до</p></li>
<li><input type="text" id="end-price" name="end_price" value="30000" /></li>
<li><p>руб</p></li>
</ul>
</div>
<div id="blocktrackbar"></div>
</div>
<input type="submit" name="submit" id="button-param-search" value="найти" />
</form>
.
.
а это в search_filter:
if ($_GET["brand"])
{
$check_brand = implode(',',$_GET["brand"]);
}
$start_price = (int)$_GET["start_price"];
$end_price = (int)$_GET["end_price"];
if(!empty($check_brand) OR !empty($end_price))
{
if(!empty($check_brand))
$query_brand = " AND brand IN($check_brand)";
if(!empty($end_price))
$query_price = " AND price BETWEEN $start_price AND $end_price";
}
$result = mysql_query("SELECT * FROM table_products where visible='1'
$query_brand $query_price",$link);
if (mysql_num_rows($result) > 0)
{
$row = mysql_fetch_array($result);
do