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; } ?> Quote Link to comment 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. Quote Link to comment 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.