<div>1. </div>
<div>When we do a SQL query, if we want to pass value to query, we make use %d for integers or %s for strings.</div>
<div>Similarly do we have any place holders for arrays.  </div>
<div> </div>
<div> </div>
<div>2.</div>
<div>I am facing a below typical problem, can somebody tell me what should I do?</div>
<div> </div>
<div>Below query works fine.</div>
<div>SELECT skillid FROM {resubmt_skills}  WHERE resubmt_skills.skillname IN (<strong>&#39;PHP&#39;, &#39;HTML&#39;, &#39;SQL&#39;</strong>)   </div>
<div> </div>
<div>But in above query search string  <strong>&#39;PHP&#39;, &#39;HTML&#39;, &#39;SQL&#39; </strong>is hard coded.</div>
<div>I want to make the query generic.</div>
<div> </div>
<div>Lets say in custom search form, user entered search string PHP, Telecom, HTML,, so how can I write a generic query.</div>
<div> </div>
<div>Thanks</div>
<div>Austin </div>