| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: Feb 2005
Posts: 58
![]() | Recordset for simple search engine in PHP Hi there, I'm trying to create a simple search engine for a client so that customers can search his products. I have one field for text, and another with a drop down list of product types and an "All Items" option. I've got my recordset to display search results matching the text field and the products, but I can't get it to display All Items if the customer selects that! So basically they can search by product type, but not across all the products. ????: NamePros.com http://www.namepros.com/programming/124994-recordset-for-simple-search-engine-php.html I'm doing this in Dreamweaver. My actual PHP coding knowledge is...terrible! Here is my code: <?php $colname2_products = "-1"; if (isset($_POST['type'])) { $colname2_products = (get_magic_quotes_gpc()) ? $_POST['type'] : addslashes($_POST['type']); } $colname_products = "-1"; if (isset($_POST['searchterm'])) { $colname_products = (get_magic_quotes_gpc()) ? $_POST['searchterm'] : addslashes($_POST['searchterm']); } mysql_select_db($database_kofightposters, $kofightposters); $query_products = sprintf("SELECT * FROM products WHERE name LIKE '%%%s%%' AND type = '%s' ORDER BY name ASC ", $colname_products,$colname2_products); $products = mysql_query($query_products, $kofightposters) or die(mysql_error()); $row_products = mysql_fetch_assoc($products); $totalRows_products = mysql_num_rows($products); ?> Any help would be greatly appreciated! Cheers, Rich |
| |
| | #6 (permalink) |
| NamePros Member Join Date: Oct 2004
Posts: 98
![]() | I'm a little confused. You have a search form with a drop down selection of categories and a search box for keywords? When people search by selecting a category, you want the results from that category only, unless they select the All Items category? |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Googlism - What does google think of you? | deadserious | The Break Room | 55 | 12-15-2005 10:09 AM |
| GP0.com Taking Offers | .X. | Domains For Sale - Make Offer | 4 | 08-16-2005 09:56 PM |
| Search Engine Submission | Webtwink | For Sale / Advertising Board | 7 | 08-27-2003 05:54 AM |