I am looking for some advice on the best way to split up a search field on a web for so I can use the data to search a table in MySQL. Right now the data comes into the script as one string. For example, I have a product in my table that has a Manufacturer of SONY, a Product ID of 12345 and a Description of Color LCD. If my user searches for any of those 3 things individually the product will come up but if the search for SONY Color it will not since it looks for the entire string. Below is the current code I am using. Thanks in advance for any help.
#!/usr/bin/perl -w use strict; use CGI; use DBI; use CGI::Carp qw(fatalsToBrowser); #Create new CGI object my $cgi = new CGI; #Connect to DB my $dbh = DBI->connect("DBI:mysql:XXXXX:XXXXX","XXXXX","XXXXX") or die $DBI::errstr; #Print html header print $cgi->header("text/html"); #pull in keyword from form my $keyword = $cgi->param("keyword"); #prepare statement my $sth = $dbh->prepare("SELECT * FROM `productTable` WHERE `mfg` like '%$keyword%' OR `productID` like '%$keyword%' OR `desc` like '%$keyword%'") or die; #execute statement $sth->execute() or die; #print results while (my $rec = $sth->fetchrow_hashref) { print qq( <table> <tr> <td align="left">$rec->{mfg}</td> <td align="left">$rec->{productID}</td> <td align="left">$rec->{desc}</td> </tr> </table> ); }

In reply to MySQL Keyword Search by richm05

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.