On the first page...
<form method="get" action="process.php">
<select name="form_category" multiple size="2">
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
<option>Option 4</option>
</select>
<input type="reset" name="B2" value="Reset">
<input type="submit" name="B1" value="Go">
</form>
process.php:
<?php
print "$form_category";
?>
Even if more than one option was selected, line one of process.php only prints the last one. I tried using this too, but it didn't work:
<?php
print "$form_category[0]";
print "$form_category[1]";
?>
Thanks