POST FormData для php с использованием javascript и XMLHTTPRequest
На данный момент у меня есть два файла: index.htm и accessdata.php. Это то, что у меня есть в index.htm: <html> <head> <script> function postData() { var xmlhttp=new XMLHttpRequest(); var url = "accessdata.php"; var checkBoxes_formData = new FormData(document.getElementById("checkBoxes")); xmlhttp.open("POST",url,true); xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded"); xmlhttp.send(checkBoxes_formData); xmlhttp.onreadystatechange=function(){ if (xmlhttp.readyState==4 && xmlhttp.status==200){ document.getElementById("result").innerHTML=xmlhttp.responseText; } } } </script> </head> <body> <button type="button" onclick="postData()">POST</button> […]