Hi P. Roescher,

@ 12:52:36 PM on 11/16/2001, P. Roescher wrote:

>     <input type="checkbox" name=<?print $name?> value="ON">

You probably want something like:

<input type="checkbox" name="players['<?print $name?>']" value="ON">

That may not work, if not:

<input type="checkbox" name="players[]" value="<?print $name?>::ON">

Then:

while(list(,$player) = each($players))
{
    list($name,$status) = explode('::',$player);
    /* Optionally:
     print "$name is $status<br>";
    */
}

(all untested)

--
 -Brian Clark | PGP is spoken here: 0xE4D0C7C8
  Please, DO NOT carbon copy me on list replies.


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