ok
the goal is: the scrips enter a userID into a column of a board (my forum has several boards, that you can subscribe to so you get an email if a message is posted, eveything works fine, except that I can activate my notification for several boards at the same time using the checkboxes)
I have seveal checkboxes like this
<input type="checkbox" name="board-' . $row5['ID_BOARD'] . '" value="1" />
(so the boxes have in the end the name "board-1, board-2. board-3")
that are submitted via a form.
then comes the part I don't know: the values of the ckeckboxes have to be transformed so taht I can use them.
then I get the list of other entries that are already in the column (other member ID's might already be in there:
request = mysql_query("
SELECT notifies
FROM {$db_prefix}boards
WHERE (ID_BOARD = $board)
LIMIT 1") or database_error(FILE, LINE);
so I have the list with the current entries:
list ($notification) = mysql_fetch_row($request);
now I have to add the new memberID to that list.
and all of that has to happen for several boards.