Tom Rawson wrote:
I have many places where I use references like this:

        if ($fields['flags']['someflag']) ...

or perhaps

        if ($_POST['checkboxfieldname']) ...



if (isset($_POST['checkboxfieldname'])) {
  /** do stuff */
}

--
Teach a man to fish...

NEW? | http://www.catb.org/~esr/faqs/smart-questions.html
STFA | http://marc.theaimsgroup.com/?l=php-general&w=2
STFM | http://www.php.net/manual/en/index.php
STFW | http://www.google.com/search?q=php
LAZY | http://mycroft.mozdev.org/download.html?name=PHP&submitform=Find+search+plugins


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to