Hi,
I'm currently having difficulties turning a javascript variable into a php variable.
This is what i have so far:
function addCustomFields(){
var ee = document.getElementById('field_num').value;
alert(ee);
document.getElementById('field_list').style.display='block';
}
What do i have to add to declare a php variable so, for instance, i could call it furhter down the page like so:
<? echo $ee; ?>
Cheers