lets say you have a select box like below that will have multiple choices so you want all choices displayed on next page
<select name="selectbox[]" multiple>
<option>1
<option>2
<option>3
<option>4
</select>
now on the php page you can do something like
$selectbox = $_POST['selectbox'];
$selectbox = @implode(", ", $selectbox);
echo $selectbox;
that will print, if you choose 2, 3, and 4 like
2, 3, 4
voila
you get the idea if not read up on
www.php.net/implode
and
www.php.net/explode