<!-- Ziyaretçi Sayfası-->
<input type="text" name="Sayi" id="TextValue">
<button type="submit" id="Gonder">GÖNDER</button>

/*
<!-- Postu alıyoruz -->

<script type="text/javascript">

$('#Gonder').click(function(){

var textT = $('#TextValue').val().trim();

if(textT.length>0) {

$.ajax({

data:{textT},
url:"siteadresi.com",
type:"POST",
sucsess: function(veri) {
alert(veri);
}
});

}

});

</script>
*/