A ver si te sirve...
Código Javascript
:
Ver originalfunction color(a, b){
if(a.checked==true){
document.getElementById(b).style.backgroundColor = '#F00';
}else{
document.getElementById(b).style.backgroundColor = '#FFF';
}
}
Código PHP:
Ver originalecho '<TH width = "50px" id="celda'.$id.'"><INPUT type = "radio" onclick="color(this, "celda'.$id.'")" name = "op'.$id.'" value = "1"/> a)</TH>';
Saludos (: