我想向我的数据库发送一个简单的数据,如名称,代码,日期......等等,我使用JavaScript获取数据,并使用Ajax将其发送到我的PHP文件,但没有任何反应,我也没有知道发生了什么,但阿贾克斯什么都不做! 那么,请任何人都可以查看代码,并告诉我们发生了什么...... 感谢
P.S。我的HTML文件END中的脚本,就在结束标记之前。
<script type="text/javascript">
debugger;
window.onload = function() {
var platform = $("input:text[id=platform]").val();
var source = $("input:text[id=source]").val();
var code = $("input:text[id=code]").val();
var thedate = $("input:text[id=date]").val();
var payment_type = $("input:text[id=payment_type]").val();
var change_for = $("input:text[id=change_for]").val();
var order_comment = $("#order_comment").val();
var decline_reason = $("input:text[id=decline_reason]").val();
var order_reference_by_vendor = $("input:text[id=order_reference_by_vendor]").val();
var deliveryprovider_title = $("input:text[id=deliveryprovider_title]").val();
var social_reason = $("input:text[id=social_reason]").val();
var government_identification = $("input:text[id=government_identification]").val();
if(platform == ""){platform = "NULL"}
if(source == ""){source = "NULL"}
if(code == ""){code = "NULL"}
if(thedate == ""){thedate = "NULL"}
if(payment_type == ""){payment_type = "NULL"}
if(change_for == ""){change_for = "NULL"}
if(order_comment == ""){order_comment = "NULL"}
if(decline_reason == ""){decline_reason = "NULL"}
if(order_reference_by_vendor == ""){order_reference_by_vendor = "NULL"}
if(deliveryprovider_title == ""){deliveryprovider_title = "NULL"}
if(social_reason == ""){social_reason = "NULL"}
if(government_identification == ""){government_identification = "NULL"}
alert ("before ajax");
$.ajax({
type:"post",
url:"savedata.php",
data:{"platform": platform,
"source": source,
"code": code,
"thedate": thedate,
"payment_type": payment_type,
"change_for": change_for,
"order_comment": order_comment,
"decline_reason": decline_reason,
"order_reference_by_vendor": order_reference_by_vendor,
"deliveryprovider_title": deliveryprovider_title,
"social_reason": social_reason,
"government_identification": government_identification},
success: function(msg){
alert("Success Insert data");
}
});
alert ("after ajax");
}
</script>
这是PHP代码
<?php
function db_connect()
{
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "integrationdb";
@mysql_connect($servername,$username,$password) or die ("error in host connection");
@mysql_select_db($dbname) or die("error in db connection");
}
db_connect();
$platform = $_POST['platform'];
$source = $_POST['source'];
$code = $_POST['code'];
$thedate = $_POST['thedate'];
$payment_type = $_POST['payment_type'];
$change_for = $_POST['change_for'];
$order_comment = $_POST['order_comment'];
$decline_reason = $_POST['decline_reason'];
$order_reference_by_vendor = $_POST['order_reference_by_vendor'];
$deliveryprovider_title = $_POST['deliveryprovider_title'];
$social_reason = $_POST['social_reason'];
$government_identification = $_POST['government_identification'];
$qry = "INSERT INTO orderinformation VALUES ('$platform','$source','$code','$thedate','$payment_type','$change_for','$order_comment','$decline_reason','$order_reference_by_vendor','$deliveryprovider_title','$social_reason','$government_identification')";
$result=mysql_query($qry);
if(isset($result)) {
echo "YES";
} else {
echo "NO";
}
?>