Thanks for your answers.
I have made this changes:
Code:
<!-- search //-->
<tr>
<td class="smallText">
<?php
$info_box_contents = array();
$info_box_contents[] = array('text' => BOX_HEADING_SEARCH);
new infoBoxHeading($info_box_contents, false, false);
$info_box_contents = array();
$info_box_contents[] = array('form' => tep_draw_form('quick_find', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get'));
$propertype_query = tep_db_query("select propertype_id, propertype_name from " . propertype . " order by propertype_name");
while ($propertype = tep_db_fetch_array($propertype_query)) {
$propertype_array[] = array('id' => $propertype['propertype_id'],
'text' => $propertype['propertype_name']);
}
$manufacturers_query = tep_db_query("select manufacturers_id, manufacturers_name from " . TABLE_MANUFACTURERS . " order by manufacturers_name");
while ($manufacturers = tep_db_fetch_array($manufacturers_query)) {
$manufacturers_array[] = array('id' => $manufacturers['manufacturers_id'],
'text' => $manufacturers['manufacturers_name']);
}
echo "<br>";
$info_box_contents = array();
$info_box_contents[] = array('form' => tep_draw_form('quick_find', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get'));
echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_pull_down_menu('propertype_id', $propertype_array, $pInfo->propertype_id);
echo "<br>";
echo "<br>";
echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_pull_down_menu('manufacturers_id', $manufacturers_array, $pInfo->manufacturers_id);
echo ' ' . tep_hide_session_id() . tep_image_submit('button_quick_find.gif', BOX_HEADING_SEARCH) . '<br>' . '' . '<br><a href="' . tep_href_link(FILENAME_ADVANCED_SEARCH) . '"><b>' . BOX_SEARCH_ADVANCED_SEARCH . '</b></a>';
?>
<!-- search_eof //-->
and ive got this:

Now i will try to link with advanced_search.php sending user's selection(s), i will appreciate any suggestion.
I would need to take user's selection(s) and make search after that.
Regards.
Bookmarks