Basically I have a form with the following field that I populate using javascript's new Option();
<form name="dns_data" action="dns_request.php" method=POST>
<select name="dns_entries" readonly="true">
</select>
</form>
So in theory I should be able to:
<? print $_POST['dns_entries']; ?>
on submit. But I can't. There is never anything in $POST['dns_entries'] or $POST['dns_entries']. Its definitly in there because I can see them on the screen before I hit submit.