teşekkürler
<form id="form1" method="post" action="islemler.php">
<input id="cevapla1" type="button">
</form>
<script>
$(document).ready(function(){
$("#cevapla1").on("click", function(){
var gonderilenform = $("#form1").serialize();
$.ajax({
url:'ajax.php',
type:'POST',
data:gonderilenform,
success:function(e){
$("#sunuc").html(e);
}
});
});
});
</script>
