Jump to content

[SOLVED] Scratching my head over this one... Select menu


suttercain

Recommended Posts

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;
}

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.