io ho questa funzione
</style>
<script language="JavaScript" type="text/JavaScript">
function tlink() {
var L = prompt("Inserisci il Testo del Link","");
if (L != "" || null) {tlink_2(L);}
}
function tlink_2(L){
var L_2 = prompt("inserisci l'URL","");
if(L_2 != "" || null) {document.addpost.testo.value=document.addpost.tes to.value + '' + L + ' ' }
document.addpost.testo.focus();
}
</script>
Che funziona bene, ma vorrei passargli da php un valore... tipo vorrei che var L = $testo...
è possibile? come posso fare?