I would like to disable form select option for non admin users, so I wrote code as follows, there after element disabled, list populated but after submit there is no value in post variable... $_POST['abc'] is empty... Can't we read disabled element's content value through post variable?
<HTML>
<body>
<form>
<select name="abc" id="abc" $disable>
<?php
foreach ($list as $value) {
echo("<option>$value</option>");
} ?>
</select>
<input type="submit" name="submit" id="Show" value="Show">
</form>
</body>
</HTML>