Ben JQuery ile Ajax kullanmaya çalışıyorum, ne yapmak istediğinizi sadece Ajax ile php satırlı metin kutusu değeri göndermek.
Ben bu kodu kullanıyorum, bu php için txtAnswer değerini gönderir, ne yazık ki, bu verilerden yeni hatlar (\ n) kaldırır. Nasıl bu sorunu çözebilir ... Şimdiden teşekkür ederim.
$.post(
'post-answer.php',
{
answer: $("#txtAnswer").val(),
qid: <?= $question_ID ?>
},
function (ajaxResponse) {
$('#answers').html(ajaxResponse)
}
);