Hi,

> <input type="checkbox" name="sif_<? echo $wponud[6]; ?>" value="1">

I'd do it like this: <inpuut type="checkbox" name="magazines[]" Value="<?php
echo $wpound[6]; >?">
Now you have an array containing all the checked magazines. To get and write
them into
the DB you could use implode() in combination with a field of the type SET
or
do a
while (list($key,$value)=each($magazines)) {
    Do some query stuff with your primary key in $value;
}

cheers
Johannes



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to