hi men
what do i have in the script if the calling form has a field SELECT defined as MULTIPLE, and the user selects more than one item?
<?
if("POST"==$REQUEST_METHOD)
{
echo "what is lstProducts?";
echo $lstProducts;
echo count($lstProducts);
echo "heeeeelp!!! The user has selected 2 items!!!";
}
?>
<body>
<form method="POST">
<select name="lstProducts" multiple>
<option>One</option>
<option>Two</option>
<option>three</option>
</select>
<input type="submit">
</form>
</body>
thnx anyway