如何使用香草JavaScript通过POST将变量值传递到php文件中?

时间:2019-02-02 16:26:19

标签: javascript php

我创建了一个对象,该对象具有形式为input元素的值。我有3页的表单,我正在使用XMLHttpRequest来获取那些页面。我需要将所有这些值发送到php文件,并将它们存储在php文件的变量中。然后,我可以将它们插入数据库中。

我需要使用XMLHttpRequest和POST方法发送这些变量。所以我用了这段代码。

// obj1 is the object which stores the values of input fields


var xhr = new XMLHttpRequest();
 xhr.onreadystatechange = function () {
  if(xhr.readyState == 4 && xhr.status == 200 ) {
   document.getElementById("newForm").innerHTML = xhr.responseText;
}
};

 xhr.open("POST","Post Data.php", true);
 xhr.setRequestHeader("Content-type", "multipart/form-data");
 xhr.send("propertyX=obj1.property1");
}

它不向数据库中插入任何内容。

This is the part of php file

$time = time();
$time = date("Y-m-d", $time);
$propertyX = $_POST["property1"];

有人可以帮我解决这个问题吗?

0 个答案:

没有答案