drewb29693 Posted March 2, 2010 Share Posted March 2, 2010 This page updates values already in a particular database. I can get the values to show in the dropdown menu and i can get the page to update my database. I need to know how to set the default value on the dropdown to what the customer has already entered instead if just want is first in the table. It is probably something easy i just can't think of it. Thanks in advance whoever fixes my problem. Here is my code: <td height="40" align="right" valign="top" bgcolor="#FFFFFF">Time Type:<span class="style1">__</span></td> <td align="left" valign="top"><label> <?php $result = mysql_query("SELECT type, visit_id FROM visit_type "); ?> <select name="visit" id="visit"> <?php while($row = mysql_fetch_array($result)) { ?> <?php echo '<option value=' . $row[visit_id] . '> ' . $row['type'] . '</option> '; ?> <?php } ?> </select> </label></td> Quote Link to comment https://forums.phpfreaks.com/topic/193904-echo-values-from-sql-into-dropdpwn/ Share on other sites More sharing options...
jacko310592 Posted March 2, 2010 Share Posted March 2, 2010 try this: <?php $result = mysql_query("SELECT type, visit_id FROM visit_type "); echo '<select name="visit" id="visit">'; while($row = mysql_fetch_array($result)) { if ($row[visit_id] == $variableNameOfPreviouslySelectedItem){ echo '<option selected value=' . $row[visit_id] . '> ' . $row['type'] . '</option> '; } else { echo '<option value=' . $row[visit_id] . '> ' . $row['type'] . '</option> '; } } echo '</select>'; ?> just change '$variableNameOfPreviouslySelectedItem' to the variable name of whatever the previously selected item is Quote Link to comment https://forums.phpfreaks.com/topic/193904-echo-values-from-sql-into-dropdpwn/#findComment-1020466 Share on other sites More sharing options...
Box Posted March 2, 2010 Share Posted March 2, 2010 whenever i do this i use the ternary operator <td height="40" align="right" valign="top" bgcolor="#FFFFFF">Time Type:<span class="style1">__</span></td> <td align="left" valign="top"><label> <?php $result = mysql_query("SELECT type, visit_id FROM visit_type "); ?> <select name="visit" id="visit"> <?php while($row = mysql_fetch_array($result)) { ?> <?php echo '<option value=' . $row[visit_id] . $row[visit_id]==$whatever ? " selected" : ""'> ' . $row['type'] . ' </option> '; ?> <?php } ?> </select> </label></td> make sure to set $whatever to your checked item which will probably be another mysql query Quote Link to comment https://forums.phpfreaks.com/topic/193904-echo-values-from-sql-into-dropdpwn/#findComment-1020486 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.