Sorry in advance for the novice question here...
I currently have my first value as a disabled and defaulted "Select" option which then changes to the selected option when a selection is made.
However if the user submits again without reselecting, the value defaults back because the post is blank. Therefore is there a way to use the previous value if so?
<select name="test_select" style="width: 110px">
    <option disabled="disabled" selected="selected">
    <?php 
        if(!empty($_POST['test_select'])){
            echo $_POST[test_select'];} 
        else 
            echo "Select Option"; ?>
    </option>
    <?php $sql = mysql_query("SELECT test FROM test_settings"); 
    while ($row = mysql_fetch_array($sql)){
        ?><option><?php echo $row['test']; ?></option><?php }?>
</select>
Thanks in advance,
Dan