RE: [PHP] Checkboxe problem

2002-02-05 Thread Niklas Lampén
There is no way. How would you then know if the checkbox was checked or not? I use 'em like this input type=checkbox name=private value=myValue and then check if $private is myValue or not. If you really have to get some data thru, use hidden inputs. Niklas -Original Message- From:

Re: [PHP] Checkboxe problem

2002-02-05 Thread Mike Maltese
just use iseet(); if(isset($private)){ //do stuff } - Original Message - From: Gaylen Fraley [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 05, 2002 8:41 PM Subject: [PHP] Checkboxe problem I have a form with 1 checkbox and have coded it like this: input