Thanks. I tried putting the isset function within the input field, but it wasn't processing the function, just printing it into the HTML. It would recognize the $audition value being checked, but not print. So instead I moved the function to before the form area and I just created a new variable to pass the "CHECKED" value to the input field.
if(isset($audition)) {$concertchecked="CHECKED";}
I liked your way better, but just couldn't get the function to be processed. This is what I was trying
<input type=\"checkbox\" name=\"audition\" value=\"on\" <? if ( isset( $audition ) ) PRINT \"CHECKED\"; ?>>
Quotes were escaped. Don't know what else to try. If you have any other suggestions, I'd appreciate it. Thanks again for all of your help.
-Patrick