Обсуждение: make form list with option select

Поиск
Список
Период
Сортировка

make form list with option select

От
Ahmad Sentri
Дата:
hi ..
this my problem with php-postgresql


this syntax php with postgresql ....
this syntax still wrong / error
in my form doesn't list ...


<th width="20%" align="left" nowrap>Kode Fakultas</th>
  <td width="72%"><select name="kode_fak">select kode_fak<option>
<?php
        $query1="select kode_fak, nama_fak from fakultas";
        $query_result1 = pg_query($conn, $query1);
           while ($row1 = pg_fetch_array($query_result1))
        {
                echo "<option
value=\"$row1[kode_fak]"\>$row1[nama_fak]</option>\n";
           }

?>
</select>
</td>


table in postgresql


CREATE TABLE FAKULTAS (KODE_FAK CHAR (1)NOT NULL,
                        NAMA_FAK VARCHAR (50),
                        NAMA_FAK_EN  VARCHAR (50),
                        CONSTRAINT XPKFAKULTAS
                        PRIMARY KEY (KODE_FAK));
help me please ...
thank's
newbie php-postgresql


Re: make form list with option select

От
apz
Дата:
Ahmad Sentri wrote:
> this syntax php with postgresql ....
> this syntax still wrong / error
> in my form doesn't list ...

I am assuming that $conn is created somewhere above ok

> <?php
>         $query1="select kode_fak, nama_fak from fakultas";
>         $query_result1 = pg_query($conn, $query1);
>            while ($row1 = pg_fetch_array($query_result1))
>         {
>                 echo "<option
> value=\"$row1[kode_fak]"\>$row1[nama_fak]</option>\n";
>            }
>
> ?>

first thing I would think of is how you access $row1

1. prolly you meant $row1["kode_fak"]
    you should quote your keyname, otherwise php thinks its something
    special, not a variable, not a string

2. I think its more obvious for compiler if you do it more explicitly:

    echo "<option value='".$row1["kode_fak"].".>".$row1["mana_fak"].
        "</option>\n";

3. there is pg_fetch_assoc, but since am newbie myself I am not sure
    wether its better to use pg_fetch_array and hope for it to be
    associative, or better use pg_fetch_assoc and be more guaranteed
    about it. anyone bother to comment? is pg_fetch_assoc an old timer
    function and pg_fetch_array is the main to use?

hope this helps, enjoy


/apz,   Condense soup, not books!


Re: make form list with option select

От
apz
Дата:
apz screwed up:
>    echo "<option value='".$row1["kode_fak"].".>".$row1["mana_fak"].
>        "</option>\n";

it should say:

     echo "<option value='".$row1["kode_fak"]."'>".$row1["mana_fak"].
         "</option>\n";


if you dont see it, I had ".>" while should be "'>"  (to close the html
value string for the option tag). blah, hope this does not deter from
getting this thing for you to work.


enjoy



/apz,   Learn to pause -- or nothing worthwhile can catch up to you.


Re: make form list with option select

От
Ray Hunter
Дата:
Or you could just do this to:

echo
"<option value=\"{$row1['kode_fak']}\">{$row1['mana_fak']}</option>\n";

That will work too...

--
Ray


On Tue, 2003-03-25 at 23:59, apz wrote:
> apz screwed up:
> >    echo "<option value='".$row1["kode_fak"].".>".$row1["mana_fak"].
> >        "</option>\n";
>
> it should say:
>
>      echo "<option value='".$row1["kode_fak"]."'>".$row1["mana_fak"].
>          "</option>\n";
>
>
> if you dont see it, I had ".>" while should be "'>"  (to close the html
> value string for the option tag). blah, hope this does not deter from
> getting this thing for you to work.
>
>
> enjoy
>
>
>
> /apz,   Learn to pause -- or nothing worthwhile can catch up to you.
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo@postgresql.org so that your
> message can get through to the mailing list cleanly

Вложения