Taken from the FAQ noted below:
If you want to match the whole field (and not just a whole word), in db.cgi sub query, comment out this line
($in{'ww'}) and ($tmpreg = "\\b$tmpreg\\b");
and replace with:
($in{'ww'}) and ($tmpreg = "^$tmpreg\$"); ## changed to match whole word in field
Hope this works for you.
Unoffical DBMan FAQ
http://creativecomputingweb.com/dbman/index.shtml/
If you want to match the whole field (and not just a whole word), in db.cgi sub query, comment out this line
($in{'ww'}) and ($tmpreg = "\\b$tmpreg\\b");
and replace with:
($in{'ww'}) and ($tmpreg = "^$tmpreg\$"); ## changed to match whole word in field
Hope this works for you.
Unoffical DBMan FAQ
http://creativecomputingweb.com/dbman/index.shtml/