Codice PHP:
function displayDiv(index){
divId = "div" + index;
if (document.getElementById(divId).style.display=="none"){
document.getElementById(divId).style.display="block";
document.getElementById('btn'+index).value="nascondi";
} else {
document.getElementById(divId).style.display="none";
document.getElementById('btn'+index).value="mostra";
}
}