Ben bir $ var. () 4 GET parametreleri alan bir PHP sayfası için çağrı olsun. Nedense, $ vererek rağmen. () Tüm 4 çağrı olsun, sadece ilk iki geçer. Ben krom dev konsolunda baktığımızda, o çağrılır URL'yi gösterir ve sadece eylem ve dbname geçer. İşte kod:
$.get('util/util.php', { action: 'start', dbname: db, url: starturl, crawldepth: depth }, function(data) {
if (data == 'true') {
status = 1;
$('#0').append(starturl + "<ul></ul>");
$('#gobutton').hide();
$('#loading').show("slow");
while(status == 1) {
setTimeout("update()",10000);
}
} else {
show_error("Form data incomplete!");
}
});
ve heres ben geliştirici konsolunda gördüğünüz URL:
http://localhost/pci/util/util.php?action=start&dbname=1hkxorr9ve1kuap2.db
** EDIT ** I have been informed that I need to encode the URL that I am trying to pass through the header. How would I go about encoding it in javascript, and decoding it in php?