<head>



<script type="text/javascript" src="js/jquery.js"></script>

<script type="text/javascript">

function ajax_mesaj_gonder()
{
jQuery.ajax ({
type: "POST",
url: "http://www.simpleturk.com/wp-content/plugins/eklentisimple/ajax.php",
data: jQuery('#form1').serialize(),

success: function (sonuc)
{
$("div#ekle").html(sonuc);
}


})
}

</script>

</head>



İlk kısım üstteki kodlar



<div id="ekle" style="width:400px;height:400px;"> </div>


divin olduğu kısım da burası


<input type="button" id="button1" value="adsasd" onclick="ajax_mesaj_gonder()" />

bu da buton .... Butona tıklandığı zaman div içerisine formdan gelen verileri yazsın istiyorum ama bir türlü başaramadım ... Denemek amaçlı sadece ajax.php ye

<?php

$mesaj = $_POST['baslik'];
$mesaj="deneme"
echo $mesaj;

?>
bunları yazdım yine geri dönüş yokkk .... Anlamadım gitti.