Possible Duplicate:
How to pass JavaScript variables to PHP?
Here below my code:
function disablefields(){
var suresh=[<?php echo $cryo_1kl_18_orig_jan; ?>];
if (document.getElementById('checkboxA').checked == 1){
document.getElementById('cryo_1kl_18_rev_jan').disabled='';
document.getElementById('cryo_1kl_18_rev_jan').value='**i want pass the php value here**';
}
I want to pass the php value to javascript...