I must be having a brain fart.
The following is my problem simplified as much as possible.
test.HTML:
<form method="post" action="test.php">
<select name="test">
<option value="1">1</option>
<option value="2">2</option>
</select>
<input type="submit" name="submit" value="submit" />
</form>[/COLOR]
test.PHP:
<?php
echo "$_POST(test)";
?>
The display I would expect is either "1" or "2". What I get is "Array(test)".
I know it is so stupid I'll kick my self, so let me know so I can start kicing.
Thanks, Gordon