I have a form has select list with multiple selecting option, what I need is to pass the multiple values to the sql statement in php.
example of the select list
<select name="site_name" size="10" multiple="multiple">
<option selected="selected">Select ...</option>
<option>UV</option>
<option>US</option>
<option>PI</option>
</select>
and this should pass UV or and US or and PI to the sql statement example
$sql = "SELECT Web_Page_Name FROM sites where Web_Page_Name =" $site_name[] ;
the previous is incorrect and I am looking for your help to know the correct sql statement to pass the multiple values.