Re: HTML FORMS selected question

Поиск
Список
Период
Сортировка
От Chris
Тема Re: HTML FORMS selected question
Дата
Msg-id 457358D9.4000404@gmail.com
обсуждение исходный текст
Ответ на HTML FORMS selected question  ("Mag Gam" <magawake@gmail.com>)
Ответы Re: HTML FORMS selected question  ("Randy Moller" <zoomerz@comcast.net>)
Список pgsql-php
Mag Gam wrote:
> I am having trouble getting values populated in my form... Here is what
> I got so far:
>
> //The values that need to be selected
> $result_ip=pg_query($dbconn,$test_query);
>
> <SELECT    NAME="ip[]" SIZE=10 MULTIPLE>
> <?php
> //This will show ALL values.
> while($rows=pg_fetch_array($result)){
> foreach ($options as $index => $option) {
>     if ($rows[1]==$option)
>     {


What does $rows contain? What does $options contain?

You could also simplify this a little bit. I'd at least remove the
foreach $options loop and use "in_array" - see php.net/in_array

while ($rows = pg_fetch_array($result)) {
   $selected = '';
   if (in_array($rows[1], $options)) {
     $selected = ' SELECTED';
   }
   sprintf('<option value="%s"%s>%s</option>', $rows[1], $selected,
$rows[1]);
}

--
Postgresql & php tutorials
http://www.designmagick.com/

В списке pgsql-php по дате отправления:

Предыдущее
От: "Mag Gam"
Дата:
Сообщение: HTML FORMS selected question
Следующее
От: Chris
Дата:
Сообщение: Re: HTML FORMS selected question