<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal">I have need to search on multiple fields and the following code works if I have a wildcard in all of the fields.&nbsp; If I take out a wildcard and do not enter anything in that field, the result is nothing found.&nbsp; Probably because the empty
 field doesn&#8217;t match the database for any entries.&nbsp; So what I would like to do is Make and OR with the field without a wild card and the other fields that have the AND.&nbsp; Hope this makes sense to someone.&nbsp; I credit Dan with the code for the implode clauses and
 it works great with the criteria of wild cards or have a pull down in the field that contains all the possible entries.&nbsp; HNUM is the field I would like to not have the wildcard. &nbsp;I have as many as ten fields, but show fewer for this example. &nbsp;THANKS.<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal">$clauses = array();<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal">if($field3 == &quot;HNUM&quot;) {<o:p></o:p></p>
<p class="MsoNormal">array_push($clauses, &quot;HNUM like '&quot;.$searchval3.&quot;'&quot;);<o:p></o:p></p>
<p class="MsoNormal">}<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal">if($field4 == &quot;STREET&quot;) {<o:p></o:p></p>
<p class="MsoNormal">array_push($clauses, &quot;STREET like '%&quot;.$searchval4.&quot;%'&quot;);<o:p></o:p></p>
<p class="MsoNormal">}<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal">if($field5 == &quot;CITY&quot;) {<o:p></o:p></p>
<p class="MsoNormal">array_push($clauses, &quot;CITY like '%&quot;.$searchval5.&quot;%'&quot;);<o:p></o:p></p>
<p class="MsoNormal">}<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal">$all_clauses = implode(&quot; AND &quot;, $clauses);<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal">$rs = $conn-&gt;Execute(&quot;SELECT * FROM housenum WHERE &quot;.$all_clauses.&quot; ORDER BY &quot;.$sort.&quot; ASC&quot;);<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal">Jim Dahl, GISP<o:p></o:p></p>
<p class="MsoNormal">GIS Coordinator<o:p></o:p></p>
<p class="MsoNormal">Douglas County Public Works<o:p></o:p></p>
<p class="MsoNormal">526 Willow Dr<o:p></o:p></p>
<p class="MsoNormal">PO Box 398<o:p></o:p></p>
<p class="MsoNormal">Alexandria MN 56308<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal">V 320-762-2933<o:p></o:p></p>
<p class="MsoNormal">&nbsp;&nbsp; 320-762-2999<o:p></o:p></p>
<p class="MsoNormal">F 320-762-2998<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
</div>
</body>
</html>