Bildigim kadariyla bir filtreleme yok bunlar java kodlari. Daha sonrasinda $_GET ile veriyi alip sqle ekleme yapiyorum. java ile gönderilen verilen $_GET ilemi aliniyor bunuda tam bilmiyorum gerci iyi anlamadigim icin yaparken bayagi ugrastim.

var xmlPost;
function xmlPost(url,text) {
	var xmlspan = document.getElementById(text);
	var xmlhttp = new_xmlhttp();
	xmlhttp.open("get",url,true);
	xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded;charset=UTF-8");
	xmlhttp.send(text);
	xmlhttp.onreadystatechange = function() {
		if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
			xmlspan.innerHTML = xmlhttp.responseText
		} else {
			xmlspan.innerHTML = 'Hata oluştu tekrar deneyiniz.';
		}
	}
	return false;
}


var commentform;
function commentform(text){
	text.innerHTML = ' ';
		if (document.comment_form.name.value=="") {
			alert("ALANLARI BOS BIRAKMAYINIZ!");
			return false;
		}
		if (document.comment_form.captcha_code.value=="") {
			alert("ALANLARI BOS BIRAKMAYINIZ!");
			return false;
		}
		if (document.comment_form.comment.value=="") {
			alert("ALANLARI BOS BIRAKMAYINIZ!");
			return false;
		}
var url = 'index.php?s=yorum&id='+document.comment_form.id.value+'&name='+document.comment_form.name.value+'&captcha_code='+document.comment_form.captcha_code.value+'&comment='+document.comment_form.comment.value;
xmlPost(url,text);
return false;
}
Buda form
<div id="comment_formxml">Yorum bilgi</div>
<br />
<div style="text-align:left;margin:auto;width:500px;">
<form accept-charset="utf-8" name="comment_form" id="comment_form" onsubmit="return commentform('comment_formxml');">
<input type="hidden" name="id" id="id" value="1" />
<input type="text" name="name" id="name" value="" style="width:208px;" />
<label style="padding-left:15px;">Isim</label><br />
<br style="line-height:5px;" />
<img src="captcha.php" alt="Güvenlik kodu" />
<input type="text" name="captcha_code" id="captcha_code" value="" style="width:105px;height:37px;vertical-align:top;font:bold 30px Arial;text-align:center;" />
<label style="padding-left:15px;vertical-align:100%;">Güvenlik Kodu</label><br />
<br style="line-height:5px;" />
<label>Yorumunuz</label><br />
<textarea name="comment" id="comment" cols="60" rows="4"></textarea><br />
<input type="submit" value="Gönder" />
</form>
</div>
Bir diger sorumda su javadaki text.innerHTML = '&nbsp;'; kodu ne anlama geliyor?