What I see is that the below is not an array of checkboxes (that would
be <input type="checkbox" ...>, not <option ...>).  <Option> ... are
part of a <select>

But, to make a checkbox be checked, you simply do this:
<input type="checkbox" ... checked>

Jeremy

Jeremy Brand :: Sr. Software Engineer :: 408-245-9058 :: [EMAIL PROTECTED]
http://www.JeremyBrand.com/Jeremy/Brand/Jeremy_Brand.html for more 
Get your own Free, Private email at http://www.smackdown.com/
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   "<body>"   -- Quoted from Yahoo! homepage, http://www.yahoo.com

On Mon, 15 Jan 2001, Jerry Lake wrote:

> Date: Mon, 15 Jan 2001 14:03:00 -0800
> From: Jerry Lake <[EMAIL PROTECTED]>
> To: "'Php-General@Lists. Php. Net'" <[EMAIL PROTECTED]>
> Subject: [PHP] checkboxes into MySQL
> 
> I know this has been discussed,
> but it messing with me.
> 
> in a script I'm working on
> I pull out an array of checkboxes
> from a database,
> 
> how do I store what people select
> back to the DB
> 
> all I end up with is the last selection
> of the array.
> 
> Jerry Lake 
> 
> -----Original Message-----
> From: jeremy brand [mailto:[EMAIL PROTECTED]]
> Sent: Monday, January 15, 2001 1:57 PM
> To: WreckRman2
> Cc: 'Php-General@Lists. Php. Net'
> Subject: Re: [PHP] Array...
> 
> 
> for ($i=100; $i>0; $i++)
>   print "<OPTION VALUE=\\\"$i\\\"></OPTION>\n";
> 
> But, I presume you would rather do this:
> for ($i=100; $i>0; $i++)
>   print "<OPTION VALUE=\"$i\"></OPTION>\n";
> 
> because I can't imagine why you would want to escape double quotes in
> HTML.
> 
> Jeremy
> 
> Jeremy Brand :: Sr. Software Engineer :: 408-245-9058 :: [EMAIL PROTECTED]
> http://www.JeremyBrand.com/Jeremy/Brand/Jeremy_Brand.html for more 
> Get your own Free, Private email at http://www.smackdown.com/
> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
>    "<body>"   -- Quoted from Yahoo! homepage, http://www.yahoo.com
> 
> On Mon, 15 Jan 2001, WreckRman2 wrote:
> 
> > Date: Mon, 15 Jan 2001 16:48:21 -0500
> > From: WreckRman2 <[EMAIL PROTECTED]>
> > To: "'Php-General@Lists. Php. Net'" <[EMAIL PROTECTED]>
> > Subject: [PHP] Array...
> > 
> > 
> > How can I do an array like below 100-1?
> > 
> > <OPTION VALUE=\"100\"></OPTION>
> > <OPTION VALUE=\"99\"></OPTION>
> > <OPTION VALUE=\"98\"></OPTION>
> > <OPTION VALUE=\"97\"></OPTION>
> > 
> > to
> > 
> > <OPTION VALUE=\"3\"></OPTION>
> > <OPTION VALUE=\"2\"></OPTION>
> > <OPTION VALUE=\"1\"></OPTION>
> > 
> >     WreckRman2
> >     Combat Flight Center
> >     http://www.combatfs.com
> > 
> > -- 
> > 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]
> > 
> > 
> 
> 
> -- 
> 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]
> 
> 
> 
> -- 
> 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]
> 
> 


-- 
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