in reply to Re: Checkbox parameter not being stored in CGI::Session
in thread Checkbox parameter not being stored in CGI::Session
If i dont do this, then i see that the fields in my template "after" the checkbox are not getting retrieved/ showing field names instead of field values in the html (sounds wierd) $self->tt_process('school_register.tt',\%ret_params);. I/m fairly certain there is a possible issue either in TT or in my TT code specifically, so i have to post this to the TT mailing list.#checkbox needs a fix as it is not set in POST if unchecked if (!defined($query->param('c_scl'))){ $c_scl = 'off'; } else { $c_scl = $query->param('c_scl'); }
|
|---|