Nieuw lid |
|
Hallo allemaal ik heb een vraagje over checkbox.
Ik heb een checkbox waar java de waarde van op moet halen of die nou wel of niet is aangekruist.
Alleen hij blijft altijd de waarde een hebben of hij nou wel of niet is aangekruist.
Dit is de html <input type="checkbox" name="privat" id="privat" value="1"/>
Dit is de java code als ik binnen e java code privat echo of binnen php blijft het altijd een.
function get_comment_reply(pagina, functie) {
if (xmlhttp) {
xmlhttp.open("GET", pagina+"?onderwerp="+document.forms["reply_comment"].onderwerp.value+"&bericht="+document.forms["reply_comment"].bericht.value+"&privat="+document.forms["reply_comment"].privat.value+"&comment_id="+document.forms["reply_comment"].comment_id.value+"&id="+document.forms["reply_comment"].id.value+"&module_name="+document.forms["reply_comment"].module_name.value, true);
eval('xmlhttp.onreadystatechange='+functie+';');
xmlhttp.send(null)
}
}
function get_comment_reply(pagina, functie) { if (xmlhttp) { xmlhttp.open("GET", pagina+"?onderwerp="+document.forms["reply_comment"].onderwerp.value+"&bericht="+document.forms["reply_comment"].bericht.value+"&privat="+document.forms["reply_comment"].privat.value+"&comment_id="+document.forms["reply_comment"].comment_id.value+"&id="+document.forms["reply_comment"].id.value+"&module_name="+document.forms["reply_comment"].module_name.value, true); eval('xmlhttp.onreadystatechange='+functie +';'); xmlhttp.send(null) } }
|