POST aracılığıyla çok sayıda veri göndererek veya GET

0 Cevap php

Ben bir PHP dosyası ajax, benim html bir textfield bir XML dosyası göndermeye çalışıyorum. Bu Yüce PHP dosyası:

<?php 
    $data = urldecode($_POST["xml"]);

    echo $data;
?>

Veri gibi bu dosyaya gönderilir:

$("#btn_save").click(function() {
    var data = escape($("#textfield").text());
    alert(data);
    $.ajax({
        url:        "validate.php",
        method:     "POST",
        data:       "xml=" + data,
        complete:   function(e) { alert(e.responseText); }
    });
});

Olması gerektiği gibi Şimdi, sürece ben kod daha birkaç satır gönderdi yok gibi çalışır. Ben ancak 60 satırı XML dosyasına yapıştırın, döner validate.php

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /xml_stylist/form/validate.php
on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
<hr>
<address>Apache mod_fcgid/2.3.5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at dahwan.info Port 80</address>
</body></html>

Ben yanlış ne yapıyorum?

Teşekkürler

0 Cevap