> <option selected><?php echo $Variable; ?></option>

> Can you see any obvious problems I might miss.?

You're specifying a variable for the option's text, but you also need to
specify the option's value.  For example, if you were retrieving data from
MySQL:

while ($record = mysql_fetch_array($results)) {
        echo "<option value='" . $record["ID"] . "'>" . $record["Title"] .
"</option>\n";
}

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to