How are the fields stored?........is it yes/no or 1/0 ?
You'd basically need to loop though the database and put an if/else inside the loop like:
check the tickbox/radio
}
else {
make a blank one
}
You'd basically need to loop though the database and put an if/else inside the loop like:
Code:
if ($data[$db_check_field_number] eq 'yes') { check the tickbox/radio
}
else {
make a blank one
}