hey, i searched the forums for this but i couldnt find something that matched my needs, in terms of complicity
<form method="POST" action="<?=$_SERVER['PHP_SELF']?>">
<p>
<select size="4" name="select" multiple>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select></p>
<p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
when i hit submit i want the values to be displayed, if this is not an array then it would simply be $_POST['select'] however when a user selects more than 1 it will be an array
i was wondering how i could process this information in the array, and echo it on the next page
thanks