AJAX-将2个变量发送到php文件

时间:2019-07-17 02:05:40

标签: javascript ajax

我正在尝试使用AJAX get方法将2个变量发送到php文件。任何帮助,将不胜感激!?另外,作为奖励-我将如何在PHP文件中检索变量(目前,我有-$ starttime = $ _GET ['starttime']; $ endtime = $ _GET ['endtime'];但我肯定那是错的!

function passDataIntoDb(starttime, endtime){
if (window.XMLHttpRequest) {

  xmlhttp = new XMLHttpRequest();
} else {

  xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
 }
 xmlhttp.onreadystatechange = function() {
  if (this.readyState == 4 && this.status == 200) {
      document.getElementById("test").innerHTML = this.responseText;
  }
 };
 xmlhttp.open("GET","inserttask.php? 
endtime=endtime&starttime=starttime",true);
 xmlhttp.send();

}

0 个答案:

没有答案