Bir de böyle dene bakalım.
<script type="text/javascript">$(function(){
$('form input[type=submit]').click(function(){
var pd = $('form').serialize();
$.ajax({
type : 'post',
url : 'ekle.php', // olmaz ise tam url yazıp deneyebilirsin.
data : pd,
cache: false,
success: function(data){
//$('#sonuc').html(data);
}
});
return false;
});
});
</script>