mattichu Posted December 18, 2011 Share Posted December 18, 2011 how would I make it so that the option 'Remove (make blank)' would post an empty value? <form action="/new/newrotastaffprocess.php" Method="POST"> <select name="username"> <?php $result = mysql_query("SELECT * FROM members") or die(mysql_error()); while($row = mysql_fetch_array( $result )) { echo "<option value=\"" . htmlentities($row["username"]) . "\">" . htmlentities($row["username"]) . "</option>"; } echo "<option value='empty'>Remove (make blank)</option>"; ?> </select> </div> <div style="position:absolute; top:397px; left:570px;"> <form action="/new/newrotastaffprocess.php" METHOD="POST"> <input type = "hidden" value="<?php echo $wkbeg;?>" name="wkbeg"> <input type = "hidden" value="<?php echo $staffno;?>" name="staffno"> <input type = "submit" value="New!"> </form> Quote Link to comment https://forums.phpfreaks.com/topic/253438-empty-dropdown-value/ Share on other sites More sharing options...
Pikachu2000 Posted December 18, 2011 Share Posted December 18, 2011 Remove the string empty from the value= attribute, leaving only the quotes. Quote Link to comment https://forums.phpfreaks.com/topic/253438-empty-dropdown-value/#findComment-1299073 Share on other sites More sharing options...
mattichu Posted December 18, 2011 Author Share Posted December 18, 2011 that doesnt work, i put it in after just having quotes didnt work to see if it passed the word 'empty' but it didnt Quote Link to comment https://forums.phpfreaks.com/topic/253438-empty-dropdown-value/#findComment-1299074 Share on other sites More sharing options...
Pikachu2000 Posted December 18, 2011 Share Posted December 18, 2011 How did you test it, exactly? Quote Link to comment https://forums.phpfreaks.com/topic/253438-empty-dropdown-value/#findComment-1299089 Share on other sites More sharing options...
sw0o0sh Posted December 19, 2011 Share Posted December 19, 2011 Why do you have form tags nested within eachother? Quote Link to comment https://forums.phpfreaks.com/topic/253438-empty-dropdown-value/#findComment-1299269 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.