When an text box is disabled, eventhough it got value, and try to submit,post to a php script, $_POST[] can't retrieve the text box value., Why ???
example,
<form name="aa" action="aa.php">
<input type="text" name="bb" value="100" disabled>
When this form is submitted, the $_POST["aa"] return empty instead of 100. :eek:


