insert value of form - checkboxes

Поиск
Список
Период
Сортировка
От Astrid Hexsel
Тема insert value of form - checkboxes
Дата
Msg-id 3a0a5ada.2ef3.0@postoffice.csu.edu.au
обсуждение исходный текст
Ответы Re: insert value of form - checkboxes  (Antti Linno <alligator@all.ee>)
Список pgsql-sql
Hello all,
I have a form which has got checkboxes and I am having problems  to have their
values stored in different rows of a table.


What I have done is: 

# colour_id is the name of my checkboxes in the input tag
<input type=checkbox name=colour_id value=200>
<input type=checkbox name=colour_id value=201> 
etc ...

# I put all the values into the array and split them

$colour = $formdata{'colour_id'};
@colours = split (/,/, $colour);

#then I want to insert then into a table (called cart)in the row called colour_id.
If I have more than one value they have to be in different rows.

# my code:
 foreach $colour(@colours)   {      $qry = INSERT INTO cart VALUES              ('$session_id', '$range_id', '$colour')
 }
 

And what happens is that I am only getting just
one value now inserted in the row. If for example I checked 3 boxes I will get
only the last
one.

The foreach loop works fine out of the query.

Thanks a lot for any help.

Astrid







  




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

Предыдущее
От: "pgsql-sql"
Дата:
Сообщение: alter pg_shadow
Следующее
От: Jerome Alet
Дата:
Сообщение: Re: ./configure problems