HTML kodu:
Ben sonucunda ben sadece 'Bize Ulaşın' Kalan kısmı html formunu görüntülemek gelmez olsun, php dosyasına bu içeriği echo
<div > Contact Us 
  <form name="profile" action="" method="post"> 
    Name : <input type="text" name="fullname" id="fullname" />
    Email : <input type="text" name="email" id="email" />
    Mobile : <input type="text" name="mobile" id="mobile" />
  </form>
</div> 
JQuery kodu yanıtı:
$.post("contact_us.php",{ user_id:$('#user_id').val(),typ:'contact_us' },
 function(data) {   
   $('#contact_us').html(data); 
});
Contact_us id bize form kişiyi yazmaz, kimse bana yardım edin
