pocobueno1388 Posted November 28, 2007 Share Posted November 28, 2007 Ah, I meant for you to only change that specific part of the code that I posted, not erase everything else. Okay, so do this so I can see <?php require('includes/get_connected.php'); $query = "SELECT * FROM comics WHERE comic_id= '45'"; $result = mysql_query($query); $num = mysql_num_rows($result); $i = 0; while ($i<$num) { $age = mysql_result($result, $i, 'age'); $TheList = array("Select Twe" => 0, "Golden" => "Golden", "Silver" => "Silver", "Bronze" => "Bronze", "Modern" => "Modern"); echo "<select name='ud_age'>"; foreach($TheList as $K => $V) { if ($V == $age) { $sel = "selected"; } else { $sel = ""; } echo "<option value='$V' $sel>$K - $V - $age</option>"; } echo "</select>"; ++$i; } ?> Link to comment https://forums.phpfreaks.com/topic/79181-solved-scratching-my-head-over-this-one-select-menu/page/2/#findComment-401295 Share on other sites More sharing options...
suttercain Posted November 28, 2007 Author Share Posted November 28, 2007 Argh, I think I figured it out... i have to close the browser, simple refresh was misleading me. Thanks Poco and Cooldude. Link to comment https://forums.phpfreaks.com/topic/79181-solved-scratching-my-head-over-this-one-select-menu/page/2/#findComment-401298 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.